You have a class named Glass that inherits from a base class named Window. The Window
class includes a protected method named break().
How should you call the Glass class implementation of the break() method?
A.
Window.break();
B.
Glass.break();
C.
this.break();
D.
base.break();
I think is Window.break() not B
you’re in the class and you should be there becouse it is protected.
so it is this.break();
Answer is B, because they ask “How should you call the Glass class implementation of the break()?”
My bad its C