146k views
3 votes
A(n) _________ is a logical grouping of objects that have the same attributes and behaviour (methods).

a. Subclass
b. Class
c. Object
d. Superclass

User Hydrogen
by
7.3k points

1 Answer

5 votes

Final answer:

A class in object-oriented programming is a blueprint from which objects with common attributes and methods are created. It is the correct answer to the question regarding a logical grouping of objects with the same attributes and behavior.

Step-by-step explanation:

The correct answer to the question, “A(n) __________ is a logical grouping of objects that have the same attributes and behaviour (methods).” is b. Class. A class in object-oriented programming is a blueprint or prototype from which objects are created. It is a logical grouping of objects that share common attributes and behaviors (methods). Objects created from the class are known as instances of the class. On the other hand, a subclass is a class that inherits attributes and methods from another class, termed a superclass. An object is an individual instance of a class that contains data and functions to manipulate that data.

User Niltz
by
7.3k points