Kizspy | Question: 11
(Choose 1 answer)
What is the output of the following code snippet?public static void main(String[] args){
int yob= 1999;
if (yob)System.out.print("Lower");else System.out.print("Upper");System.out.println("2000");}
A. Syntax error
B. Upper
C. Lower 2000
D. Lower