Discussion :: Object Oriented Programming Using C++
-
Which of the following statements creates a named constant called driverAge whose value is 16?
A.
const driverAge = 16;
|
B.
const short driverAge = 16;
|
C.
driverAge =16;
|
D.
driverAge const =16;
|
E.
namedconst driverAge =16;
|
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment