Computer Science - Object Oriented Programming Using C++
Exercise "Nothing in life is to be feared, it is only to be understood."
- Marie Curie
6.
To expose a data member to the program, you must declare the data member in the _____ section of the class
A.
common B.
exposed C.
public D.
unrestricted E.
user
Answer: Option B
Explanation:
No answer description available for this question. Let us discuss .
7.
Evaluate the following expression: 3 >6&&7>4
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss .
8.
Which of the following are valid characters for a numeric literal constant?
A.
a comma B.
a dollar sign ($) C.
a percent sign (%) D.
a space E.
None of the above
Answer: Option E
Explanation:
No answer description available for this question. Let us discuss .
9.
A function that changes the state of the cout object is called a(n) _____
A.
member B.
adjuster C.
manipulator D.
operator
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss .
10.
A C++ program contains a function with the header int function(double d, char c). Which of the following function headers could be used within the same program?
A.
char function(double d, char c) B.
int function(int d, char c) C.
both (a) and (b) D.
neither (a) nor (b)
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss .