Multiple choice

Which of the followng statements is incorrect about private access specifiers in C++?

  1. It prevents the misuse of data.

  2. It provides security to the data member.

  3. It creates a boundary for the members of a class.

  4. The member which is declared privately can be accessed by any other function in a class.

  5. None of these

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

This is incorrect.