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 Programming Study Set 1
Quiz 11: Advanced Inheritance Concepts
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
If Java did not allow you to ____ classes, you would need to create every part of a program from scratch.
Question 22
Multiple Choice
When you create a new subclass in Java, neither the superclass source code nor the superclass ____ is changed.
Question 23
Multiple Choice
____ compress the data they store, which reduces the size of archived class files.
Question 24
Multiple Choice
If you provide an empty method within an abstract class, the method is an abstract method even if you do not explicitly use the keyword ____ when defining the method.
Question 25
Multiple Choice
Classes, such as the String class, have their own equals() methods that overload the ____ class method.
Question 26
Multiple Choice
When you create a class and use the implements clause to implement an interface but fail to code one of the interface's methods, the compiler error generated indicates that you must declare your class to be ____.
Question 27
Multiple Choice
The ____ method is useful in debugging a program because it can be used to display and examine values.
Question 28
Multiple Choice
When you create a number of classes that inherit from each other, as well as multiple interfaces that you want to implement with these classes, you often will find it convenient to place these related classes in a(n) ____.