Java - Wrapper Classes
What is the output of the following code?
Integer i = Integer.valueOf("50");
int j = i.intValue();
System.out.println(j + 10);Integer i = Integer.valueOf("50");
int j = i.intValue();
System.out.println(j + 10);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions