Home / CSE / Object Oriented Programming Using C++ :: Discussion

Discussion :: Object Oriented Programming Using C++

  1. Which of the following statements creates a named constant called driverAge whose value is 16?

  2. A.
    const driverAge = 16;
    B.
    const short driverAge = 16;
    C.
    driverAge =16;
    D.
    driverAge const =16;
    E.
    namedconst driverAge =16;

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment