In OOP, which of the following is true when a derived class inherits a base class privately?
Answers
Answered by
0
Answer:
We don't have "private class" all class is public. If class a inherits class b,
class a will have all methods, values from class b.
Explanation:
Similar questions