πŸ“Š Python
Q. What is the output of the following code?
Code:
True = False
while True:
    print(True)
    break
  • (A) False
  • (B) True
  • (C) None
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (D) None of the above

Explanation: SyntaxError, True is a reserved keyword and its value cannot be changed.

Explanation by: Tanmay
SyntaxError, True is a reserved keyword and its value cannot be changed.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
212
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Tanmay
Publisher
πŸ“ˆ
91%
Success Rate