Computer Science - Object Oriented Programming Using C++
Exercise :: Object Oriented Programming Using C++ - Section 9
1. |
Programmer-defined functions can be |
A. |
value-returning functions only | B. |
void functions only | C. |
either value-returning or void functions |
Answer: Option C
Explanation:
|
2. |
A class D can be derived from a class C, which is derived from a class B, which is derived from a class A |
Answer: Option A
Explanation:
|
3. |
To use the strcpy function, you must include the _____ header file in your program |
A. |
assign.h | B. |
copy.h | C. |
string.h | D. |
strcopy.h | E. |
strcpy.h |
Answer: Option C
Explanation:
|
4. |
The number of the relational operators in the C language is |
Answer: Option B
Explanation:
|
5. |
Which of the following tells C++ to display numbers with two decimal places? |
A. |
setdecimal(2) | B. |
setiosflags(2) | C. |
setiosflags(2.00) | D. |
setprecision(2) |
Answer: Option D
Explanation:
|