Final answer:
Members that are protected in the super class are visible in the derived class.
Step-by-step explanation:
False
In an inheritance hierarchy, a derived class inherits members from its superclass. However, the visibility of these inherited members is determined by their access specifiers. If a member in the superclass is declared as protected, it can be accessed by the derived class and any classes derived from it. Therefore, the statement is true.