Question:What is the result of the expression 7 / 2 in C#?
A 3.5 B 3 C 4 D 2
+ AnswerB
+ ExplanationIn C#, integer division truncates the decimal portion, so 7 / 2 results in 3.
+ Report