Java - Conditional Statements
Questions No: 1/5

What does the following code print ?

if 2 + 5 == 8:
    print("TRUE")
else:
    print("FALSE")
print("TRUE")

Questions No: 2/5

Can we write if / else into one line in python?
क्या हम पाइथन में एक लाइन में if / else लिख सकते हैं?

Questions No: 3/5

What will be the output after following statements?

x = 2
if x < 5:
     print(x)
else:
    pass

Questions No: 4/5

What will the following code output?

x=0
if x:
print("True")
else:
print("False")

Questions No: 5/5

elif can be considered to be abbreviation of
elif किसका संक्षिप्त रूप माना जा सकता है