1. 

The last statement in a function is often a(n) _____

A. return
B. goodbye
C. finish
D. endfunction

2. 

When the function int someFunction(char c) throw( ) is executed, _____

A. it can throw anything
B. it may throw an integer
C. it may throw a character
D. it may not throw anything

3. 

The two statements that can be used to change the flow of control are

A. if and switch
B. if and while
C. switch and do-while
D. break and continue
E. None of the above

4. 

If p and q are assigned the values 2 and 3 respectively then the statement p = q++

A. gives an error message
B. assigns a value 4 to p
C. assigns a value 3 to p
D. assigns a value 5 to p
E. None of the above

5. 

Which of the following is the insertion operator?

A. >>
B. <<
C. //
D. /*
E. both (a) and (b)