correct answers (3)
Procedural Programming - correct answer ✔✔•writing programs made of functions that perform specific
tasks
Object-oriented programming: - correct answer ✔✔•focused on creating objects
Object: - correct answer ✔✔•entity that contains data and procedures
Encapsulation - correct answer ✔✔•a self contained unit combining data and code into a single object
data is known as - correct answer ✔✔data attributes
procedures are known as - correct answer ✔✔methods
data hiding - correct answer ✔✔object's data attributes are hidden from code outside the object
object reusability - correct answer ✔✔the same object can be used in different programs
class - correct answer ✔✔code that specifies the data attributes and methods of a particular type of
object
instance - correct answer ✔✔an object created from a class
class definitions - correct answer ✔✔set of statements that define a class's methods and data attributes
objects state - correct answer ✔✔the values of the object's attribute at a given moment