Q. What is the result of the following expression in C++: '5 / 2'?
β
Correct Answer: (B)
2
Explanation: In integer division, the fractional part is discarded, so the result of 5 / 2 is 2.