MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class operators { public static void main(String args[]) { int x = 8; System.out.println(++x * 3 + " " + x); } } |
| A. | 24 8 |
| B. | 24 9 |
| C. | 27 8 |
| D. | 27 9 |
| Answer» E. | |