Who developed the Python programming language? - Guido van Rossum
T/F: Python is a general-purpose programming language, appropriate for solving
problems in many areas of computing. - True (You might use Python for web
...
Who developed the Python programming language? - Guido van Rossum
T/F: Python is a general-purpose programming language, appropriate for solving
problems in many areas of computing. - True (You might use Python for web
development, business applications, and artificial intelligence, among many others.)
T/F: The Python programming language was so named after a snake was discovered in
the creator's office. - False
T/F: Python 3 is backwards compatible to Python 2. - False
Python embodies elements of which programming paradigm? - Procedural
programming
Object-oriented programming
Functional programming
Which of the following is NOT a principle embraced by the Python programming
language? - Verbose is better than succinct
Thonny is best described as which of the following? - Integrated Development
Environment (IDE)
T/F: The output of a Python program run in Thonny appears in the shell window. - True
T/F: Thonny displays code using syntax highlighting. - True
T/F: Running a program that contains errors will cause the Thonny development
environment to terminate. - True
T/F: The Thonny debugger lets you trace the value of variables while your program is
executing. - True
T/F: A Python program must be enclosed in curly braces { } to be executed. - False
Which of the following statements is true? - The print statement is a call to a function
T/F: A Python program must compiled into an executable form before it can be run. -
FalseWhat is syntax coloring? - Showing certain elements of a program code in different
colors
What does the term case sensitive mean? - The difference between uppercase and
lowercase letters matters
What output does the following code produce?
print('apple', 'banana') - apple banana
What output is produced by the following code?
print(15 + 30) - 45
What output does the following code produce?
print('Ready', end=' ')
print('Set', end='')
print('Go') - Ready SetGo
What output is produced by the following code?
print('Jan', 'Feb', 'Mar', sep='-') - Jan-Feb-Mar
What output is produced by the following code?
print('oak', 'elm', 'pine', end='!', sep='#') - oak#elm#pine!
T/F: Python variables are created using an assignment statement. - True
T/F: The value of a variable can change throughout a program. - True
Which of the following is NOT a valid Python identifier? - 1stPlace
Which of the following identifiers follows the convention for naming Python variables? -
total
[Show More]