What is the purpose of the @property decorator in advanced OOP?
A. To define a setter method for a class attribute
B. To define a getter method for a class attribute
C. To add properties to classes
D. To define methods for instance attributes
Answer: Option B
Solution (By Examveda Team)
The @property decorator is used to define a getter method for a class attribute, allowing access as a property.What is encapsulation in object-oriented programming (OOP)?
A. Exposing internal details of an object
B. Grouping data and methods into a single unit
C. Hiding data and methods within an object
D. Inheriting from multiple classes
What is the main benefit of encapsulation?
A. Improved code readability
B. Faster execution
C. Enhanced security
D. Better memory management
A. Creating new objects from existing ones
B. Allowing objects to share attributes and methods
C. Restricting access to object attributes
D. Converting classes into objects
What is an abstract class in OOP?
A. A class that cannot be instantiated
B. A class with no attributes
C. A class with only attributes
D. A class that cannot have methods

Join The Discussion