Q. If the variable count exceeds 100, a single statement that prints “Too many” is
-
(A)
if (count>100) cout << “Too many”;
-
(B)
if (count<100) cout << “Too many”;
-
(C)
if (count>100) cout >> “Too many”;
-
(D)
None of these
✅ Correct Answer: (A)
if (count>100) cout << “Too many”;