If the final modifier is added to the definition of a method, this means:
a. The method may be redefined in the derived class.
b. The method may be redefined in the sub class.
c. The method may not be redefined in the derived class.
d. None of the above.
C
Computer Science & Information Technology
You might also like to view...
A(n) ________ is the arrangement of objects on a slide
Fill in the blank(s) with correct word
Computer Science & Information Technology
Given the following declarations:
struct house { double price; int rooms; }; house *ptr1, *ptr2; which of the following is invalid? a) ptr1->price = 200000; b) ptr2->rooms = ptr1->rooms; c) *ptr1 = ptr2; d) ptr1 = ptr2;
Computer Science & Information Technology