πŸ“Š Python
Q. What will be the output of the following code snippet?
Code:
a = 3
b = 1 
print(a, b)
a, b = b, a 
print(a, b)
  • (A) 3 1 1 3
  • (B) 3 1 3 1
  • (C) 1 3 1 3
  • (D) 1 3 3 1
πŸ’¬ Discuss
βœ… Correct Answer: (A) 3 1 1 3

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
327
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Akash Lawaniya
Publisher
πŸ“ˆ
86%
Success Rate