In the following code segment, you may assume that a, b, and n are all type int.
if (a != b && n / (a - b) > 90)
{
/* statement 1 */
}
else
{
/* statement 2 */
}
/* statement 3 */
What will happen if a == b is false?
(A) /* statement 1 */ will be executed.
(B) /* statement 2 */ will be executed.
(C) Either /* statement 1 */ or /* statement 2 */ will be executed.
(D) A compile-time error will occur.
(E) An exception will be thrown.