Kizspy | Question: 10
(Choose 1 answer)
What will be the output of the following code?
public class Test10 { public static void main(String[] args) { Integer x = new Integer(5);Integer y= new Integer(10);System.out.println((String)(x+y));}}
A. 15
Β. 510
C. Runtime error
D. Compiler Error