Computer Science - Object Oriented Programming Using C++
Exercise :: 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 |
Answer: Option A
Explanation:
|
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 |
Answer: Option D
Explanation:
|
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 |
Answer: Option A
Explanation:
|
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 |
Answer: Option C
Explanation:
|
5. |
Which of the following is the insertion operator? |
Answer: Option B
Explanation:
|