Chapter 2 review Flashcards
A blank error does not prevent the program from running, but causes it to produce incorrect results.
logic
Design is the most important part of the program development cycle.
How do you understand the task that the program is to perform?
-Work with customer to get a sense what the program is supposed to do
-Ask questions about program details
-Create one or more software requirements
A(n) blank is a set of well-defined logical steps that must be taken to perform a task
Algorithm
An informal language that has no syntax rules and is not meant to be compiled or executed is called
pseudocode
A blank is a diagram that graphically depicts the steps that take place in a program
flowchart
A blank is a sequence of characters
string
A blank is a name that references a value in the computers memory
variable
A blank is any hypothetical person using a program and providing input for it
user
A string literal in Python must be enclosed in
either single-quotes or double-quotes
Short notes placed in different parts of a program explaining how those parts of the program work are called
comments
A(n) blank makes a variable reference a value in the computers memory
assignment statement
This symbol marks the beginning of a comment in Python
pound symbol (#)
Which of the following statements will cause an error?
a. x = 17
b. 17 = x
c. x = 99999
d. x = ‘17’
17 = x
In the expression 12 + 7, the values on the right and left of the + symbol are called
operands
This operator performs integer division
division operator (//)
-double forward slash is used to perform integer division
This is an operator that raises a number to a power
exponent operator (**)
This operator performs division, but instead of returning the quotient it returns the remainder
remainder operator (%)
Suppose the following statement is in a program: price = 99.0. After this statement executes, the price variable will reference a value of which data type?
float
Which built-in function can be used to read input that has been typed on the keyboard?
input ()
Which built-in function can be used to convert an int value to a float?
float ()
A magic number is
an unexplained value that appears in a programs code
A blank is a name that represents a value that does not change during the programs execution
names constant
True or False
Programmers must be careful not to make syntax errors when writing pseudocode programs
false
True or False
In a math expression, multiplication and division take place before addition and subtraction
true
True or False
Variable names can have spaces in them
false
True or False
In Python, the first character of a variable name cannot be a number
true
True or False
If you print a variable that has not been assigned a value, the number 0 will be displayed
false