Object Oriented Programming Using C++ – Section 3

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

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

Correct Answer:  A. return
Advertisement

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 anythin

Correct Answer:  D. it may not throw anythin
Advertisement

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

Correct Answer:  A. if and switch
Advertisement

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

Correct Answer:  C. assigns a value 3 to p
Advertisement

5. Which of the following is the insertion operator?

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

Correct Answer:  B. <<
Advertisement

Leave A Comment?