

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
public class operators { public static void main(String args[]) { int p = 10; System.out.println(++p * 5 + " " + p); } } |
A. | 44 11 |
B. | 33 11 |
C. | 55 11 |
D. | 66 11 |
E. | 11 55 |
Answer» D. 66 11 | |