Java - Conditional Statements
Questions No: 1/3

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

Questions No: 2/3

What does the following code print ?

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

Questions No: 3/3

What will be the output after following statements?

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