MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class mainclass { public static void main(String args[]) { char a = 'A'; a++; System.out.print((int)a); } } |
| A. | 66 |
| B. | 67 |
| C. | 65 |
| D. | 64 |
| Answer» B. 67 | |