MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class char_increment { public static void main(String args[]) { char c1 = 'D'; char c2 = 84; c2++; c1++; System.out.println(c1 + " " + c2); } } |
| A. | E U |
| B. | U E |
| C. | V E |
| D. | U F |
| Answer» B. U E | |