Asked by garrett miles on May 17, 2024

verifed

Verified

The class __________ is an ancestor class of all Java classes.

A) String
B) Object
C) Math
D) JFrame

Object Class

A template or blueprint from which objects are created in object-oriented programming.

Ancestor Class

A class from which another class inherits, directly or indirectly. It's a part of the hierarchical inheritance in object-oriented programming.

  • Identify the critical features and constituents of the Java Object class.
verifed

Verified Answer

KG
Keeno GlanvilleMay 19, 2024
Final Answer :
B
Explanation :
The Object class is the root class of the Java class hierarchy. It is the ancestor of all Java classes and defines the basic methods that are inherited by all objects in Java. Therefore, option B is the correct answer.