CH 1 & 2 Flashcards
T/F | Comments in Python begin with the # character.
T
T/F | All programs are normally stored in ROM and are loaded into RAM as needed for processing.
F
T/F | The CPU understands instructions written in a binary machine language.
T
T/F | RAM is a volatile memory used for temporary storage while a program is running.
T
T/F | The Python language uses a compiler which is a program that both translates and executes the instructions in a high-level language.
F
T/F | IDLE is an alternative method to using a text editor to write, execute, and test a Python program.
True **
T/F | According to the behavior of integer division, when an integer is divided by an integer, the result will be a float.
F
T/F | Python allows programmers to break a statement into multiple lines.
T
T/F | A flowchart is a tool used by programmers to design programs
T
T/F | In Python, math expressions are always evaluated from left to right, no matter what the operators are.
F
T/F | Computer programs typically perform three steps: input is received, some process is performed on the input, and output is produced.
T
T/F | In Python, print statements written on separate lines do not necessarily output on separate lines.
T
T/F | The \t escape character causes the output to skip over to the next horizontal tab.
T
T/F | Since a named constant is just a variable, it can change any time during a program’s execution.
F
Where does a computer store a program and the data that the program is working with while the program is running?
a. in main memory
b. in the CPU
c. in secondary storage
d. in the microprocessor
a. in main memory
What type of volatile memory is usually used only for temporary storage while running a program?
a. ROM
b. TMM
c. RAM
d. TVM
c. RAM
The smallest storage location in a computer’s memory is known as a
a. byte
b. ketter
c. switch
d. bit
d. bit
What is the largest value that can be stored in one byte?
a. 255
b. 128
c. 8
d. 65535
a. 255
Which type of error prevents the program from running?
a. syntax
b. human
c. grammatical
d. logical
a. syntax
Select all that apply. To create a Python program you can use
a. a text editor
b. a word processor if you save your file as a .docx
c. IDLE
d. Excel
a. a text editor
c. IDLE
What is the informal language, used by programmers use to create models of programs, that has no syntax rules and is not meant to be compiled or executed?
a. flowchart
b. algorithm
c. source code
d. pseudocode
d. pseudocode
A(n) __________ is a diagram that graphically depicts the steps that take place in a program?
a. flowchart
b. algorithm
c. source code
d. pseudocode
a. flowchart
The __________ function reads a piece of data that has been entered at the keyboard and returns that piece of data, as a string, back to the program.
a. input()
b. output()
c. eval_input()
d. str_input()
a. input()
Which mathematical operator is used to raise 5 to the second power in Python?
a. /
b. **
c. ^
d. ~
b. **
In a print statement, you can set the __________ argument to a space or empty string to stop the output from advancing to a new line.
a. stop
b. end
c. separator
d. newLine
b. end
After the execution of the following statement, the variable sold will reference the numeric literal value as (n) \_\_\_\_\_\_\_\_\_\_ data type. sold = 256.752 a. int b. float c. str d. currency
b. float
After the execution of the following statement, the variable price will reference the value \_\_\_\_\_\_\_\_\_\_. price = int(68.549) a. 68 b. 69 c. 68.55 d. 68.6
a. 68
What is the output of the following print statement? print 'I\'m ready to begin' a. Im ready to begin b. I\'m ready to begin c. I'm ready to begin d. 'I\'m ready to begin'
c. I’m ready to begin
What is the output of the following command, given that value1 = 2.0 and value2 = 12? print(value1 * value2) a. 24 b. value1 * value2 c. 24.0 d. 2.0 * 12
c. 24.0
The __________ built-in function is used to read a number that has been typed on the keyboard.
a. input()
b. read()
c. get()
d. keyboard()
a. input()
Which of the following will display 20%?
a. print(format(20, ‘.0%’))
b. print(format(0.2, ‘.0%’))
c. print(format(0.2 * 100, ‘.0%’))
d. print(format(0.2, ‘%’))
b. print(format(0.2, ‘.0%’))
What symbol is used to mark the beginning and end of a string?
a. a slash (/)
b. an asterisk (*)
c. a quote mark (“)
d. a comma (,)
c. a quote mark (“)
To use Python’s turtle graphics, you must include which of the following statements in your program?
a. import turtle_module
b. import turtle_graphics
c. import turtle
d. import Turtle
c. import turtle
What would the following display?
num = 99
num = 9
print(num)
9
What would the following display?
print(‘george’, ‘john’, ‘paul’, sep= ‘@’)
george@john@paul