What will be the output of the following code x=1 if x>3: if x > 4: print("A",end=’ ‘) else: print("B",end=’ ‘) elif x < 2: if x != 0: print("C",end=’ ‘) print("D")
Answers
Answered by
3
Explanation:
52 // integer literal
age // variable name
System.out.println("ABC"); // method call
"Java" // string literal
98.6D // double precision floating-point literal
89L // long integer literal
Similar questions