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 are different types of classloaders?
How do you do exponents in java?
What is callable java?
What are the two basic ways in which classes that can be run as threads may be defined?
What are the Static and Dynamic Variables? Differentiate them.
What is the use of default method in interface in java?
Does java map allow duplicates?
What is an eror in java?
What is gc()?
Can constructor be static or final?
Why can't you declare a class as protected?
Is null an object in java?
How many static init can you have?
What is the difference between an interface and an abstract class?
What do you mean by byte code?