Chapter 14 Flashcards Preview

Python > Chapter 14 > Flashcards

Flashcards in Chapter 14 Deck (6)
Loading flashcards...
1
Q

pure function

A

A function that does not modify any of the objects it receives as parameters. Most pure functions are fruitful.

2
Q

modifier

A

A function that changes one or more of the objects it receives as parameters. Most modifiers are void.

3
Q

functional programming style

A

A style of program design in which the majority of functions are pure.

4
Q

prototype development

A

A way of developing programs starting with a prototype and gradually testing and improving it.

5
Q

planned development

A

A way of developing programs that involves high-level insight into the problem and more planning than incremental development or prototype development.

6
Q

algorithm

A

A set of instructions for solving a class of problems by a mechanical, unintelligent process.