Py4e: Chapter 1
Which of these words are reserved words in Python ?
if, break, while
Python scripts (files) have names that end with:
.py
What will the following program print out: >>> x = 15 >>> x = x + 5 >>> print(x)
20
What is "code" in the context of this course?
A sequence of instructions in a programming language
Which of the parts of a computer actually executes the program instructions?
Central Processing Unit (CPU)
What is the proper way to say "good-bye" to Python?
quit()
Which of the following is not one of the programming patterns covered in Chapter 1?
Random steps
A USB memory stick is an example of which of the following components of computer architecture?
Secondary Memory
What is the best way to think about a "Syntax Error" while programming?
The computer did not understand the statement that you entered