

InterviewSolution
Saved Bookmarks
1. |
Name the wrapper classes of char type and boolean type. |
Answer» What are the values of a and b after the following function is executed, if the values passed are 30 and 50: void paws(int a, int b) { a=a + b; b=a – b; a=a – b; System.out.println (a+ “,” +b); } |
|