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
Why is multithreading important?
Can a constructor call another constructor?
How many return statement are allowed in a function?
What is a bubble sort in java?
What are the three best choices for a development environment?
What do you understand by Header linked List?
what happens when a thread cannot acquire a lock on an object? : Java thread
What is application system?
What is the arraylist in java?
Is set thread safe java?
What is array length?
Explain the selection sort algorithm and state its time complexity?
What is the replace tool?
define the terminology association.
Is it possible to compare various strings with the help of == operator? What are the risks involved?