1) These are operators that add and subtract one from their operands.

A) plus and minus
B) ++ and --
C) binary and unary
D) conditional and relational
E) None of these

2) What is the output of the following code segment?
n = 1; while (n <= 5) cout << n << ' '; n++;

A) 1 2 3 4 5
B) 1 1 1... and on forever
C) 2 3 4 5 6
D) 1 2 3 4
E) 2 3 4 5