Q. Which of the following is not a valid access specifier in C++?
β
Correct Answer: (D)
global
Explanation: 'global' is not an access specifier in C++. The valid ones are 'private', 'protected', and 'public'.