Computer Science - Object Oriented Programming Using C++
Exercise :: Object Oriented Programming Using C++ - Section 9
41. |
A static data member is given a value |
A. |
within the class definition | B. |
outside the class definition | C. |
when the program is executed | D. |
never |
Answer: Option B
Explanation:
|
42. |
_____ refers to the process of locating and removing the errors in a program |
A. |
Analyzing | B. |
Correcting | C. |
Debugging | D. |
Executing | E. |
Tracking |
Answer: Option C
Explanation:
|
43. |
Static variables are sometimes called |
A. |
class variables | B. |
functional variables | C. |
dynamic variables | D. |
auto variables |
Answer: Option A
Explanation:
|
44. |
You can pass _____ to functions |
A. |
copies of individual structure members | B. |
copies of entire structures | C. |
pointers to structures | D. |
All of the above |
Answer: Option D
Explanation:
|
45. |
Element doubleArray[7] is which element of the array? |
A. |
the sixth | B. |
the seventh | C. |
the eighth | D. |
impossible to tell |
Answer: Option C
Explanation:
|