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 files manifesting?
How do generics work?
What is listnode in java?
What is this keyword in java?
Explain where variables are created in memory?
In case of inheritance what is the execution order of constructor and destructor?
Can you explain the cs option of java interpreter?
What are methods and how are they defined?
Can a private method be declared as static?
What are the 6 mandatory procedures for iso 9001?
Can a class be protected in java?
What string is utf8?
How garbage collection is done in java?
What are the common uses of "this" keyword in java ?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?