Solved
What is the this keyword? ✔✔The this keyword refers to the current instance of the class.
What is the output of the following code snippet? ✔✔false
What is the output of the following code snippet? ✔✔true
How do you call the superconstructor from a subclass? ✔✔You call it by making a call with the
word super in the subclass constructor.
Which of the following is a false statement about the classes? ✔✔Both SciFi and Fantasy inherit
constructors from Movie.
Say you are trying to create a set of classes that represent tools. You will have a Tool class as
well as a Hammer class and Screwdriver class. Hammer and Screwdriver are both subclasses of