Given:
11. public static void main(String[] args) {
12. Integer i = uew Integer(1) + new Integer(2);
13. switch(i) {
14. case 3: System.out.println(”three”); break;
15. default: System.out.println(”other”); break;
16. }
17. }
‘What is the result?
1 three
2 other
3 An exception is thrown at runtime.
4 Compilation fails because of an error on
line 12.

Answers were Sorted based on User's Feedback



Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / amit mittal

Three will be the answer.

Is This Answer Correct ?    27 Yes 3 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / venkata krishna

Hi,

Answer is 1 means three..

line 12 is executing sucuessfully ,after that i is 3 now
line 13 is switch also executed successfully and print the
three

Is This Answer Correct ?    8 Yes 2 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / manikandan

In the line 12 .jus think new Integer(1) will result 1 and
new Integer(2) will result 2 so 1+2=3 which is stored in a i.

so the line 12 can b written as a Integer i=1+2;

the answer is 1) three

Is This Answer Correct ?    5 Yes 1 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / manikandan

In the line 12 .jus think new Integer(1) will result 1 and
new Integer(2) will result 2 so 1+2=3 which is stored in a i.

so the line 12 can b written as a Integer i=1+3;

Is This Answer Correct ?    4 Yes 1 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / kumar

The above scenario using Wrapper class.The Wrapper class
allows arthmetic opertion(Boxing and unboxing the interget
numbers).So the result will be "three"

Is This Answer Correct ?    1 Yes 0 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / balamurugan

Three is answer.

Is This Answer Correct ?    2 Yes 2 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / james n saikay

Three

Is This Answer Correct ?    0 Yes 0 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / nirmal

Ans 4: Compilation fails because of an error on
line 12.

Reason: The operator + is undefined for the argument type
(s) java.lang.Integer, java.lang.Integer Cannot switch on a
value of type Integer. Only int values or enum constants
are permitted.

Is This Answer Correct ?    0 Yes 4 No

Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2..

Answer / harish

Compilation fails because of an error on

Is This Answer Correct ?    5 Yes 12 No

Post New Answer

More Core Java Interview Questions

what are the high-level thread states? : Java thread

0 Answers  


What is the difference between overloading and overriding a function?

13 Answers   eG Innovations, Infosys, TCS,


How HashMap implemented in java? how it internally works when values are added or searched from hashMap?What is the difference betweenthe implementation of hashmap and Linked Hashmap?

3 Answers   IBM,


1.what is the exact difference between applet and frame? 2.Do we use main method in frames?

5 Answers  


What is parsing a string?

0 Answers  






Can You Have Virtual Functions In Java?

0 Answers  


Why java is secure? Explain.

0 Answers  


What is the same as procedures?

0 Answers  


This is related to threads. I have a class with synchronized method m1(). Can I create different instances of this class and execute the m1() for different threads?

3 Answers  


What is abstraction with strong example program? (not a general program)

3 Answers  


What is the use of using enum to declare a constant?

0 Answers   Fidelity,


What is volatile keyword in java

0 Answers  


Categories