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

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

Explanation by: Rajeev Malhotra
True is a keyword and its value cannot be changed.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
166
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Rajeev Malhotra
Publisher
πŸ“ˆ
86%
Success Rate