What does the following code print ?
if 2 + 5 == 8:
print("TRUE")
else:
print("FALSE")
print("TRUE")
Qus
निम्नलिखित कोड क्या प्रिंट करता है?
if 2 + 5 == 8: print("TRUE") else: print("FALSE") print("TRUE")
A. TRUE
B. TRUE FALSE
C. TRUE TRUE
D. FALSE TRUE