Object Oriented MCQ Set 1 1. If a function has to be called only by using other member functions of the class, what should be the access specifier used for that function? a) Private b) Protected c) Public d) Default AnswerAnswer: a [Reason:] The function should be made private. In this way, the function will…