Week 2 Flashcards
Comments in Python begin with the # character
True
When using the camelCase naming convention, the first word of the variable name is written in lowercase and the first characters of all subsequent words are written in uppercase.
True
According to the behavior of integer division, when an integer is divided by an integer, the result will be a float.
False
Python allows programmers to break a statement into multiple lines.
True
Python formats all floating-point numbers to two decimal places when outputting with the print statement.
False
A flowchart is a tool used by programmers to design programs
True
In Python, math expressions are always evaluated from left to right, no matter what the operators are.
False
Computer programs typically perform three steps: input is received, some process is performed on the input, and output is produced.
True
In Python, print statements written on separate lines do not necessarily output on separate lines.
True
The \t escape character causes the output to skip over to the next horizontal tab.
True
Since a named constant is just a variable, it can change any time during a program’s execution.
False
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()
The line continuation character is a
a. #
b. %
c. &
d. \
d. \
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
What is the output of the following print statement?
print(‘The path is D:\sample\test.’)
a. ‘The path is D:\sample\test.’
b. The path is D:\sample\test.
c. The path is D\sample\test.
d. The path is D:\sample\test.
d. The path is D:\sample\test.
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%’)) <enter>
b. print(format(0.2, '.0%')) <enter>
c. print(format(0.2 * 100, '.0%')) <enter>
d. print(format(0.2, '%')) <enter></enter></enter></enter></enter>
b. print(format(0.2, ‘.0%’)) <enter></enter>