1. ________ class is a class that you create only to extend
a)abstract
b)inheritance
c) parent
d)final
2. when you assign a variable or constant of one type to a variable of another type, the behavior is called
a) impilict
b)referencing
c)dynamic method beinding
d)containing
3. an application's ability to select the correct subclass method is known as ___
a) implementing methods
b) dynamic method binding
c)implicit casting
d)method fixing
1. Answer is abstract
In abstract class we can't instantiate objects. later we use this class methos in another class by using extending keyword.
2.Answer is implicit
If we assign one variable on type to another variable of different type it is known as implicit
3.
An applications ability to select the correct subclass method is known as Dynamic method binding. It is is not known at compil time.
The perfect example for this is method over riding. Because eventhough different classes have same method the class object detemines which mehod to choose.
Get Answers For Free
Most questions answered within 1 hours.