What is true about the protected keyword in terms of inheritance?
Group of answer choices
O Protected members of a class have extra security built in via the compiler.
O If you don't use protected, you have to rely on the public interface of the parent class to access/use parent functionality
O Protected items are accessible within the scope of child classes but inaccessible outside to outside scope.
O Protected members are inaccessible in child classes, we use private to make them accessible.