

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
public class Relational_operator_Example { public static void main(String args[]) { int num1 = 7; int num2 = 6; System.out.print(num1 > num2); } } |
A. | true |
B. | false |
C. | 1 |
D. | 0 |
E. | None of these |
Answer» B. false | |