A new class of objects can be created conveniently by ________; the new class (called the ________) starts with the characteristics of an existing class (called the ________), possibly customizing them and adding unique characteristicsof its own. Group of answer choices

Respuesta :

Answer:

Option A is correct.

Inheritance, superclass, subclass

A new class of objects can be created conveniently by **inheritance**; the new class (called the **superclass**) starts with the characteristics of an existing class (called the **subclass**), possibly customizing them and adding unique characteristics of its own.

Explanation:

A class is a term in object oriented programming that is extensible program code used to create, name and implement what you want the objects to do.

Inheritance is used to describe the making of new classes from already existing classes. The general properties of the old classes remain in the new classes created from them.

Hence, the new classes (because they're usually an improvement on the old classes as they hold on to the wanted properties of the old classes and additional great ones are added or modified) are called superclasses and the old, already existing ones are called subclasses.

The missing words from the given paragraph are inheritance, superclass and subclass respectively.

The given problem is based on the concept of Object Oriented Programming (OOPs). A class is a term in object oriented programming that is extensible program code used to create, name and implement what you want the objects to do.

Inheritance is used to describe the making of new classes from already existing classes. The general properties of the old classes remain in the new classes created from them.

Hence, the new classes (because they're usually an improvement on the old classes as they hold on to the wanted properties of the old classes and additional great ones are added or modified) are called super classes and the old, already existing ones are called subclasses.

So, the complete paragraph will be,

A new class of objects can be created conveniently by inheritance; the new class (called the superclass) starts with the characteristics of an existing class (called the subclass), possibly customizing them and adding unique characteristics of its own.

Thus, we can conclude that the missing words from the given paragraph are inheritance, superclass and subclass respectively.

Learn more about the object oriented programming here:

https://brainly.com/question/22530356