Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Visual Basic
Quiz 10: Object-Oriented Programming: Inheritance
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
True/False
When a program creates a derived-class object,the Object constructor is the last constructor called and the first whose body finishes executing.
Question 22
Multiple Choice
Polymorphism allows for specifics to be dealt with during:
Question 23
Multiple Choice
How can a derived class constructor ccall a base class constructor?
Question 24
Multiple Choice
For which of the following would polymorphism not provide a clean solution?
Question 25
True/False
In practice,derived classes should depend only on the base-class services (that is,Private methods and properties)and not on the base-class data implementation.
Question 26
True/False
To call the base-class default constructor explicitly,the call to a base-class constructor must be the first statement in the derived-class-constructor definition.
Question 27
Multiple Choice
Which statement is true when a base class has Protected instance variables?
Question 28
Multiple Choice
When a derived-class member overrides a base-class member,the base-class member can be accessed from the derived-class by using the Visual Basic keyword .
Question 29
True/False
When a request is made to use a derived-class-object method through a base-class reference,Visual Basic polymorphically chooses the correct overridden method in the derived class that is associated with the object.