Module 11 Flashcards
coding
The process of writing the programming language statements to create a computer program.
compiler
A language translator that converts an entire program into machine language before executing it.
debugging
The process of ensuring a program is free of errors.
flowchart
A program design tool that graphically shows step-by-step how a computer program will process data.
markup language
A type of language that uses symbols or tags to describe what a document should look like.
object code
The machine language version of a computer program generated when the program’s source code is compiled. Code a computer can execute.
object-oriented programming (OOP)
An approach to program design in which a program consists of objects that contain data (attributes) and processes (methods) to be used with those objects.
software development kit (SDK)
A programming package designed for a particular platform that enables programmers to develop applications for that platform more quickly and easily.
source code
A computer program before it is compiled. programs coded into a specific language using the appropriate language application.
syntax error
A programming error that occurs when the programmer has not followed the rules of the programming language.
procedural programming
separates a program into small modules that are called by the main program or another module when needed
variables
named memory locations that are defined for a program
aspect oriented programming (AOP)
separates functions so that program components can be developed and modified individually from one another
agile software development
creates software quickly
Program development (application software development)
process of creating application programs
Program development life cycle (PDLC)
5 phases of program development; typically takes place during system acquisition phase of SDLC
problem analysis
problem is considered and program specifications are developed
program design
program specifications are used to develop an algorithm (steps program must do) for that program
wireframe
visual representation of the overall design and logic of an application
pseudocode
use English-like statements to outline the logic of a program, rather than a flowchart’s graphical symbols
Unified modeling language (UML)
set of standard notations for creating business models
control structure
illustrates when, how, and in what order the statements in a computer program, module, or method are performed; sequence controls structure-series of statements follow one another; selection control structure- multiple paths, direction depends on result of certain condition (ie if-then-else)
- Repetition control structure (iteration control structure)
statements repeated in a loop until a particular condition is met
program coding
writing code using programming language
programming debugging and testing
process of ensuring a program is free of errors (bugs) and works as it is supposed to
language translator
program that converts source code into object code
interpreter
translates on line of code at a time
assembler
converts assembly language programs into machine language
logic errors
errors in logic of program; program will run, but with incorrect results
Program implementation and maintenance
implementation-getting the test program installed and up and running; maintenance- updating software as needed so it continues to be useful
T/F: A systems analyst is an individual who writes the code for a computer program.
false
T/F: The terms class and inheritance are associated with the object-oriented programming approach.
true
T/F: With a do until structure, the program statements in the loop are always executed at least once.
true
T/F: BASIC is an example of an object-oriented programming language.
false
T/F: A wireframe is another name for a flowchart.
false
A(n) _____ (called an attribute in an OOP) in a computer program holds the current value of a data item in that program.
variable
A(n) ____ converts the source code of an application program into executable object code (machine language) one line at a time.
interpreter
- Using an incorrect formula is an example of a(n) ____ error.
logic
______ software development is an approach that uses short development cycles in order to produce small functional pieces of a program on an ongoing basis.
agile
Indicate the proper order of the phases in the program development life cycle (PDLC) by writing the numbers from 1 to 5 in the blanks to the left of the phases.
- program coding
- program design
- program implementation and maintenance
- program debugging and testing
- problem analysis
- 3 program coding
- 2 program design
- 5 program implementation and maintenance
- 4 program debugging and testing
- 1 problem analysis
Which approach to programming uses the concept of inheritance?
a. procedural
b. object-oriented
c. structured
b. object-oriented
True or False: An infinite loop is an example of a logic error.
true
A program design tool that uses English-like statements to outline the logic of a program is known as ___________.
pseudocode