48.4k views
2 votes
Which type of development is Jennifer using if she is writing classes that depend on classes that are already written?

A) Bottom-down development
B) Top-down development
C) Aggregation development
D) Bottom-up development

User Edilberto
by
7.6k points

1 Answer

2 votes

Final answer:

Jennifer is using Bottom-up development, where classes are created by building upon existing ones, allowing each component to be tested individually before integration.

Step-by-step explanation:

If Jennifer is writing classes that depend on classes that are already written, she is using Bottom-up development. In software engineering, Bottom-up development is an approach where individual base-level components are developed first, and then integrated to form larger systems. This contrasts with Top-down development, where the system is designed as a whole, and then broken down into smaller parts or modules.

In a Bottom-up development approach, developers can test and debug each individual component before integrating them, which can lead to more reliable software. It's often used when libraries or existing classes provide a foundation on which to build new functionality. Over time, developers will create new classes that utilize these established components, essentially 'building up' the software from the 'bottom' foundational classes.

User Menace
by
8.8k points