

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
public class increment _Example { public static void main(String args[]) { int a = 5; System.out.print(++a * 10); } } |
A. | 50 |
B. | 60 |
C. | 70 |
D. | 80 |
E. | 90 |
Answer» C. 70 | |