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.
Answer Posted / 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 |
Post New Answer View All Answers
What is an enumeration?
Can a class be declared as static?
What exactly is methodology?
Is it possible for a yielded thread to get chance for its execution again?
How do you escape json?
How can you write a loop indefinitely in java programming?
Where are the card layouts used?
Why call by value prevents parameter value change?
What is the difference between pass by reference and pass by pointer?
What is the implementation of destroy method in java. Is it native or java code?
What is ternary operator in java?
what methods would you overwrite in java.lang.object class?
Is a boolean variable?
Why main function is static?
What is type inference in java8?