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

Explanation: The compound assignment operator (>>=) shifts the bits of x to the right by 1, effectively dividing x by 2. So, x becomes 5.

Explanation by: Vijay Sangwan
The compound assignment operator (>>=) shifts the bits of x to the right by 1, effectively dividing x by 2. So, x becomes 5.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
198
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Vijay Sangwan
Publisher
πŸ“ˆ
92%
Success Rate