

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
class Output { public static void main(String args[]) { boolean a = true; boolean b = false; boolean c = a ^ b; System.out.println(!c); } } |
A. | 0 |
B. | 1 |
C. | False |
D. | True |
Answer» D. True | |