2.3k views
2 votes
In object-oriented programming, which of the following concepts is used to describe properties?

1) methods
2) encapsulation
3) polymorphism
4) attributes

User Unoti
by
7.8k points

1 Answer

2 votes

Final answer:

In object-oriented programming, attributes are the concept used to describe the properties of an object.

Step-by-step explanation:

In object-oriented programming, attributes are used to describe properties. Methods refer to functions that objects can perform, encapsulation is a concept where data and the methods that operate on that data are bundled together, and polymorphism is the ability of different objects to be treated as instances of the same class through a common interface. Attributes, on the other hand, are variables that hold data related to an object and define its state.

User Tim Ferrell
by
7.5k points