Multiple Choice
Which of the following is true about Java classes?
A) All classes must have one parent but may have any number of children (derived or extended) .
B) All classes must have one parent and may have a single child (derived or extended) but may have any number of parent classes.
C) All classes can have any number (zero or more) of parent classes and any number of children (derived or extended) classes.
D) All classes must have one parent and may have a single child (derived or extended) class.
E) All classes can have either zero or one parent class and any number of child (derived or extended) classes.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Abstract methods are used when defining<br>A) interface
Q2: Consider a class named Name which has
Q3: All classes in Java are directly or
Q5: Example Code Ch 09-4<br>Given the following partial
Q6: Java does not support multiple inheritance but
Q7: The instruction super(); does which of the
Q8: Example Code Ch 09-1<br>Consider the following class
Q9: If a programmer writes a class that
Q10: Why is it a contradiction for an
Q11: Explain the difference between using an imported