modules that can be developed and tested separately and then integrated into a
single program. incremental development A process in which a programmer
writes and tests a few statements, then writes and test a small amount more,
and so on. function stub A function definition whose statements have not yet
been written. Algorithm time efficiency The number of calculations required to
solve a problem. Systems Development Life Cycle - SDLC 1. The analysis
Q: 4. The testing phase checks that the programs correctly meets the goals.
Answer:
Waterfall Approach No earlier phase is come back to.
Agile Approach A program can be built by doing small amounts of each SDLC
phases in
sequence and then repeating .
Universal Modeling Language - UML Modeling language for software design that
uses
different types of diagrams to visualize the structure and behavior of programs. UML
consists of
several structural and behavioral diagrams.
structural diagram Visualizes static elements of software , such as types of variables
and
functions used in the program.
, Q: behavioral diagram Visualizes dynamic behavior of software, such as the flow of
an
Answer:
activity diagram A flowchart used to describe the flow of an activity or set of
activities.
Universal Modeling Language (UML) A modeling language for software design that
uses
different types of diagrams to visualize the structure and behavior of programs.
structural diagram Visualizes static elements of software, such as the types of
variables and
functions used in the program.
behavioral diagram Visualizes dynamic behavior of software, such as the flow of an
Activity Diagram Uses to describe the flow of an activity or set of activities.
use case diagram Behavioral diagram used to visually model how a user interacts
with a
software program.
class diagram A structural diagram that can be used to visually model the classes of a
computer program, including member variables and functions.
class Code blueprint for creating an object that is composed of data members and
functions
that operate on those data members.
sequence diagram A behavioral diagram that shows interaction between software
components and indicates the order of events.