A ________ member’s access is somewhere between public and private.
The ________ keyword is used to call a superclass constructo…
The ________ keyword is used to call a superclass constructor explicitly.
________ is a special type of expression used to create an o…
________ is a special type of expression used to create an object that implements a functional interface.
To indicate the data type of a variable in a UML diagram, yo…
To indicate the data type of a variable in a UML diagram, you enter ________.
Protected class members can be denoted in a UML diagram with…
Protected class members can be denoted in a UML diagram with the ________ symbol.
If str is declared as: String str = “ABCDEFGHI”;What will b…
If str is declared as: String str = “ABCDEFGHI”;What will be returned from the following statement?Character.toLowerCase(str.charAt(5))
In the following code, what will the call to super do?
In the following code, what will the call to super do?
If ClassC is derived from ClassB which is derived from Class…
If ClassC is derived from ClassB which is derived from ClassA, this would be an example of
What does the following UML diagram entry mean?+ setHeight(h…
What does the following UML diagram entry mean?+ setHeight(h : double) : void
If a method in a subclass has the same signature as a method…
If a method in a subclass has the same signature as a method in the superclass, the subclass method ________ the superclass method.