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.