Loading practice questions
Which syntax among the following shows that a member is private in a class?
Correct Answer: D — private functionName(parameters)
Explanation:
The function declaration must contain private keyword follower by the return type and function name. Private keyword is followed by normal function declaration.