Whenever there is a superclass-subclass relationship, the superclass inherits all data members and methods of the subclass.

Answer the following statement true (T) or false (F)

False

Computer Science & Information Technology

You might also like to view...

Given the following pseudocode, what is the value of myGrade after the call to the curveScore module?

``` Module main() Declare Integer myGrade Set myGrade = 82 Call curveScore(myGrade) End Module Module curveScore(Integer score) Declare Integer newScore Set newScore = score + 5 Display newScore End Module ``` a. 87 b. 82 c. 5 d. cannot tell

Computer Science & Information Technology

The ____ Tool controls how much of an image is displayed in the Document window.

a. Display b. Reveal c. Show d. Zoom

Computer Science & Information Technology