<< Chapter < Page Chapter >> Page >
This module contains review questions and answers keyed to the module titled Itse1359-1030-Variables and Identifiers.

Table of contents

Preface

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.)

Questions

Question 1

True or False? A variable is the same as a constant.

Go to answer 1

Question 2

True or False? Python is a strongly typed language.

Go to answer 2

Question 3

True or False? Python programmers must declare all variables.

Go to answer 3

Question 4

Explain the dangers of using a language that does not require variables to be declared.

Go to answer 4

Question 5

What is the best defense against spelling errors in variables names?

Go to answer 5

Question 6

True or False? Variable names can begin with numeric or digit characters.

Go to answer 6

Question 7

Write a simple program that illustrates case sensitivity in the names of variables.

Go to answer 7

Question 8

Explain the use of the assignment operator.

Go to answer 8

Question 9

Which type usually provides the greater range for storage of numeric values, integer or floating point?

Go to answer 9

Question 10

Should you just always use floating point instead of integer to be safe?

Go to answer 10

Question 11

Write a simple program that illustrates the approximation nature of floating point arithmetic.

Go to answer 11

Question 12

Explain the purpose of the automatic continuation variable whose name is simply the underscore character.

Go to answer 12

Figure index

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.

Spacer image of a rabbit and a penguin.

This image was also inserted for the purpose of inserting space between the questions and the answers.

Spacer image of a penguin and some houses.

Answers

Answer 12

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

Answer 11

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

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask