πŸ“Š C++
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x ^= y);
  • (A) 10
  • (B) 20
  • (C) 30
  • (D) Error
πŸ’¬ Discuss
βœ… Correct Answer: (C) 30

Explanation: The compound assignment operator (^=) performs a bitwise XOR operation between x and y and returns the new value of x, which is 30.

Explanation by: Praveen Singh
The compound assignment operator (^=) performs a bitwise XOR operation between x and y and returns the new value of x, which is 30.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
78
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Praveen Singh
Publisher
πŸ“ˆ
80%
Success Rate