

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. | 55 |
D. | 54 |
Answer» B. 67 | |