Computer Science - Object Oriented Programming Using C++
|
|
|
|
Exercise"Nothing in life is to be feared, it is only to be understood."
- Marie Curie
|
| 1. |
The last statement in a function is often a(n) _____ |
| A. |
return | B. |
goodbye | | C. |
finish | D. |
endfunction |
Answer: Option C
Explanation:
No answer description available for this question. Let us discuss.
|
| 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 E
Explanation:
No answer description available for this question. Let us discuss.
|
| 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 B
Explanation:
No answer description available for this question. Let us discuss.
|
| 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:
No answer description available for this question. Let us discuss.
|
| 5. |
Which of the following is the insertion operator? |
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss.
|
|
|