Multiple Choice
What is the output of the following code?
Int age = 30;
If ( age > 33 )
System.out.print( 1 ) ;
Else
System.out.print( 2 ) ;
System.out.println( 3 ) ;
A) 1
B) 2
C) 12
D) 123
E) 23
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q28: When comparing two floating-point numbers for equality,
Q29: Which of these takes only one boolean
Q30: When using an if/else if structure, it
Q31: What error will a compiler generate if
Q32: The Conditional Operate (?:) evaluates a condition
Q34: What will result if you have an
Q35: Why would if/else statements simplify processing?
Q36: The execution of statements stops before the
Q37: "!( a && b ) is equivalent
Q38: What is the meaning of the operator