Beginner C++
Q17 / 100

What does the const keyword on a member function mean?

Correct! Well done.

Incorrect.

The correct answer is C) The function does not modify any member variables of the object

C

Correct Answer

The function does not modify any member variables of the object

Explanation

void show() const; guarantees the function won't modify the object's state. It can be called on const objects.

Progress
17/100