200-901 · Question #341
200-901 Question #341: Real Exam Question with Answer & Explanation
The correct answer is A: improved readability. Improved readability: Classes allow for encapsulation of related functionality and data, promoting clearer and more readable code. They help organize code in a modular and structured way, making it easier for developers to understand and maintain. Variable reusability: Classes su
Question
What are two benefits of using classes over functions when writing applications? (Choose two.)
Options
- Aimproved readability
- Bincreased compatibility
- Cvariable reusability
- Dincreased performance
- Ecode organization
Explanation
Improved readability: Classes allow for encapsulation of related functionality and data, promoting clearer and more readable code. They help organize code in a modular and structured way, making it easier for developers to understand and maintain. Variable reusability: Classes support the concept of encapsulation, allowing for the encapsulation of variables and functions into a single unit. This promotes reusability, as objects created from classes can be reused in different parts of the application or in different applications altogether.
Topics
Community Discussion
No community discussion yet for this question.