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
Java How To Program
Quiz 10: Object-Oriented Programming: Polymorphism
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which of the following statements about abstract superclasses is true?
Question 2
Multiple Choice
The UML distinguishes an interface from other classes by placing the word "interface" in above the interface name.
Question 3
Multiple Choice
In Java SE 7 and earlier,an interface may contain:
Question 4
Multiple Choice
Which of the following is false?
Question 5
Multiple Choice
Declaring a method final means:
Question 6
Multiple Choice
Consider classes A,B and C,where A is an abstract superclass,B is a concrete class that inherits from A and C is a concrete class that inherits from B.Class A declares abstract method originalMethod,implemented in class B.Which of the following statements is true of class C?
Question 7
Multiple Choice
A(n) class cannot be instantiated.
Question 8
Multiple Choice
If the superclass contains only abstract method declarations,the superclass is used for ________.
Question 9
Multiple Choice
Which of the following could be used to declare abstract method method1 in abstract class Class1 (method1 returns an int and takes no arguments) ?
Question 10
Multiple Choice
For which of the following would polymorphism not provide a clean solution?
Question 11
Multiple Choice
Polymorphism enables you to:
Question 12
Multiple Choice
Assigning a subclass reference to a superclass variable is safe ________.
Question 13
Multiple Choice
When a superclass variable refers to a subclass object and a method is called on that object,the proper implementation is determined at execution time.What is the process of determining the correct method to call?