<< Chapter < Page | Chapter >> Page > |
This module is one in a collection of modules on Python designed for teaching ITSE 1359 Introduction to Scripting Languages: Python at Austin Community College in Austin, TX.
This module contains review questions and answers keyed to the module titled Itse1359-1030-Variables and Identifiers .
Once you study that module, you should be able to answer the review questions in this module.
The questions and the answers in this module are connected by hyperlinks to make it easy for you to navigate from the question to the answer and back again.
(Note to blind and visually impaired students: with the exception of two bitmap images that are used solely as spacers to separate the question sectionfrom the answer section, all of the material in this module is presented in plain text format and should be accessible using an audio screen reader or abraille display.)
True or False? A variable is the same as a constant.
Go to answer 1
True or False? Python is a strongly typed language.
Go to answer 2
True or False? Python programmers must declare all variables.
Go to answer 3
Explain the dangers of using a language that does not require variables to be declared.
Go to answer 4
What is the best defense against spelling errors in variables names?
Go to answer 5
True or False? Variable names can begin with numeric or digit characters.
Go to answer 6
Write a simple program that illustrates case sensitivity in the names of variables.
Go to answer 7
Explain the use of the assignment operator.
Go to answer 8
Which type usually provides the greater range for storage of numeric values, integer or floating point?
Go to answer 9
Should you just always use floating point instead of integer to be safe?
Go to answer 10
Write a simple program that illustrates the approximation nature of floating point arithmetic.
Go to answer 11
Explain the purpose of the automatic continuation variable whose name is simply the underscore character.
Go to answer 12
What is the meaning of the following two images?
These images were inserted here simply to insert some space between the questions and the answers to keep them from being visible on the screen at thesame time.
This image was also inserted for the purpose of inserting space between the questions and the answers.
The primary purpose of the automatic variable named _ is to make it easier for you to string calculations together in interactive mode and to display theintermediate results as you go.
Go back to Question 12
See the sample program in Figure 3 . We know that the true result of this expression is an unending string of nines, as in9.999999999999999
Notification Switch
Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?