Chapter 13: Program Development and Programming Languages Flashcards

1
Q

agile software development (ASD)

A

An approach to program design that uses short development cycles in order to produce small functional pieces of a program on an ongoing basis. (p510)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

API (application program interface)

A

A set of commands, functions, and protocols used by programmers when building software for a particular operating system (or apps to interface with a particular Web site). (p531)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Application lifecycle management (ALM)

A

A broad term to describe complete systems that can be used to create and manage an application throughout its entire life cycle from design through retirement. (p528)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Aspect-oriented programming (AOP)

A

An approach to program design in which different functions are clearly separated so program components can be developed and modified independently from one another, and the components can be easily reused with separate, nonrelated objects. (p510)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Assembly language

A

A low-level programming language that uses names and other symbols to replace some of the 0s and 1s in machine language. (p533)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

BASIC

A

An easy-to-learn, high-level programming language that was developed to be used by beginning programmers. (p537)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

C

A

A high-level structured programming language that has the execution efficiency of an assembly language. (p538)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

C#

A

The newest, object-oriented version of the C programming language. (p538)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

C++

A

A newer, object-oriented version of the C programming language. (p538)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

COBOL

A

A high-level programming language developed for transaction processing applications. (p536)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

coding

A

The process of writing the programming language statements to create a computer program. (p520)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

compiler

A

A language translator that converts an entire program into machine language before executing it. (p524)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

control structure

A

A pattern for controlling the flow of logic in a computer program, module, or method. (p515)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Dart

A

A high-level, open source, object-oriented programming language developed by Google and designed to replace JavaScript in Web applications. (p541)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

debugging

A

The process of ensuring a program is free of errors. (p523)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Flowcharts

A

A program design tool that graphically shows step-by-step the actions a computer program will take. (p512)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

FORTRAN

A

A high-level programming language used for mathematical, scientific, and engineering applications. (p535)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Fourth-generation languages (4GLs)

A

A class of programming languages that is closer to natural language and easier to work with than high-level languages. (p535)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

High-level languages

A

A class of programming languages that is closer to natural language and easier to work with than a low-level language. (p533)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Integrated development environments (IDEs)

A

A collection of tools used with a particular programming language to develop and test software programs. (p530)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Interpreters

A

A language translator that converts program statements line-by-line into machine language, immediately executing each statement. (p524)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Java

A

A high-level, object-oriented programming language frequently used for Web applications. (p539)

23
Q

language translator

A

A software program that converts source code to object code. (p523)

24
Q

logic errors

A

A programming error that occurs when running a program produces incorrect results. (p526)

25
Q

low-level languages

A

A class of programming languages that is highly detailed and machine-dependent. (p532)

26
Q

machine language

A

A low-level programming language in which the program code consists of 0s and 1s. (p532)

27
Q

object code

A

The machine language version of a computer program generated when the program’s source code is compiled. (p523)

28
Q

Objective-C

A

An object-oriented version of the C programming language used to write software for Max OS X and iOS. (p538)

29
Q

object-oriented programming (OOP)

A

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. (p509)

30
Q

Pascal

A

A structured, high-level programming language often used to teach structured programming, especially appropriate for use in math and science applications. (p537)

31
Q

problem analysis

A

The phase of the program development life cycle in which the problem is carefully considered and the program specifications are developed. (p511)

32
Q

Procedural programming

A

An approach to program design in which a program is separated into small modules that are called by the main program or another module when needed. (p507)

33
Q

program coding

A

The phase of the program development life cycle in which the program code is written using a programming language. (p520)

34
Q

program debugging and testing

A

The phase of the program development life cycle that ensures a program is correct and works as intended. (p523)

35
Q

program design

A

The phase of the program development life cycle in which the program specifications are expanded into a complete design of the new program. (p512)

36
Q

program development

A

The process of creating application programs. (p511)

37
Q

program development life cycle (PDLC)

A

The process containing the five phases of program development: analyzing, designing, coding, debugging and testing, and implementing and maintaining application software. (p511)

38
Q

program implementation and maintenance

A

The phase of the program development life cycle in which the program is implemented and then maintained, as needed, to remain useful. (p528)

39
Q

programmer

A

A person whose job it is to write, test, and maintain computer programs. (p511)

40
Q

programming language

A

A set of rules, words, symbols, and codes used to write computer programs. (p532)

41
Q

Pseudocode

A

A program design tool that uses English-like statements to outline the logic of a program. (p514)

42
Q

Python

A

A high-level, open source, dynamic, object-oriented programming language that can be used to develop a wide variety of applications. (p541)

43
Q

repetition control structure

A

A series of statements in a loop that are repeated until a particular condition is met. (p517)

44
Q

Ruby

A

A high-level, open source, object-oriented programming language that is often used to develop Web applications. (p541)

45
Q

selection control structure

A

A series of statements in which the results of a decision determine the direction the program takes. (p517)

46
Q

sequence control structure

A

A series of statements that follow one another. (p515)

47
Q

software development kit (SDK)

A

A programming package designed for a particular platform that enables programmers to develop applications for that platform more quickly and easily. (p531)

48
Q

source code

A

A computer program before it is compiled. (p521)

49
Q

syntax errors

A

A programming error that occurs when the programmer has not followed the rules of the programming language. (p525)

50
Q

Unified Modeling Language (UML)

A

A set of standard notations for creating business models; widely used for modeling object-oriented programs. (p514)

51
Q

variables

A

A named memory location defined in a computer program that is used to store the current value of a data item used in that program. (p508)

52
Q

Visual Basic

A

A version of the BASIC programming language that uses a visual programming environment and supports object-oriented programming. (p538)

53
Q

wireframe

A

A visual representation of the overall design and logic of an app or a Web site. (p513)