Developing Applications and Automating Workflows Using Cisco Platforms (DEVASC) — Question 464
What are two benefits of organizing code into classes, methods, functions, and modules? (Choose two.)
Answer options
- A. improves readability
- B. improves reusability
- C. improves parallelism
- D. improves performance
- E. decreases complexity
Correct answer: A, B
Explanation
Selecting A and B is correct because organizing code into these structures significantly enhances readability by making it easier to understand and follow, and it improves reusability by allowing code to be used in multiple places without duplication. Options C, D, and E do not directly relate to the primary benefits of such organization; while they may have some impact, they are not the main advantages of structuring code this way.