Software Design Flashcards
What is the first phase of the software design process?
Requirements Gathering and Analysis phase. Define the scope and objectives of the project, focusing on what you want to achieve and what you need to implement.
What is the second phase of the software design process?
System Design
Purpose: Plan the overall structure and design of the project. Construct diagrams, or sketches.
What is the third phase of the software design process?
Implementation phase
Convert design specifications into actual code. This phase involves writing, testing, and integrating the software components.
What is the fourth phase of the software design process?
Testing
Purpose: Ensure your project works as intended and is free of major issues.
What is the fifth phase of the software design process?
Deployment
Purpose: Release the software to users or customers. This phase involves setting up the software in the target environment and making it available for use.
What is the sixth phase of the software design process?
Maintenance
Purpose: Address any issues that arise after deployment and make improvements based on user feedback.
What is the seventh phase of the software design process?
Evaluation and Feedback
Purpose: Assess the software’s performance and gather feedback from users to inform future updates or projects.
What is the SDLC / systems development life cycle?
In information systems, systems are built using a series of phases known as the systems development life cycle or SDLC.
What is a structural diagram?
A structural diagram visualizes static elements of software, such as the types of variables and functions used in the program.
What is a behavioral diagram?
A behavioral diagram visualizes dynamic behavior of software, such as the flow of an algorithm.
What is an activity diagram?
A UML activity diagram is a flowchart, similar to zyFlowchart, used to describe the flow of an activity or set of activities.
What is the software requirements specification / SRS document that is usually created after the analysis phase?
The analysis phase of each approach commonly produces a software requirements specification (SRS), a document describing all requirements for the software product.
What is a compiled language/compiler?
A program written in a compiled language is first converted by a tool (compiler) into machine code, which can run on a particular machine.
What is interpreted language/scripting language/interpreter?
An interpreted language (aka scripting language) is a language that is run one statement at a time by another program called an interpreter.
Explain what a statically typed language is?
Most compiled languages are statically typed, meaning each variable’s type must be declared and cannot change while the program runs.