Q. What is the output of the following code?
Code:
True = False
while True:
print(True)
break
β
Correct Answer: (D)
None of the above
Explanation: SyntaxError, True is a reserved keyword and its value cannot be changed.