

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
class booloperators { public static void main(String args[]) { boolean var11 = true; boolean var12 = false; System.out.println((var11 & var12)); } } |
A. | 0 |
B. | true |
C. | false |
D. | 1 |
E. | None of these |
Answer» D. 1 | |