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 / 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 |
Post New Answer View All Answers
What is a final class in java?
What is method reference in java?
what is the volatile modifier for? : Java thread
Explain about class in java?
What is the length of a string?
What is jee6?
How would you use Bubble Sort to sort the number of elements?
Define an abstract class with reference to java.
What is your platform’s default character encoding?
Why charat is used in java?
What modifiers are allowed for methods in an interface?
How does enum work in java?
What are thread local variables?
What is array initialization in java?
What is a module function?