Jupyter Review Questions

Table of Contents

Preface

This page contains review questions for teaching ITSE-1372 Int Comp Program Python at Austin Community College in Austin, TX.

The questions and the answers on this page are connected by hyperlinks to make it easy for you to navigate from the question to the answer and back again.

The questions on this page are similar to the questions that you will find on the proctored tests for this course. Therefore, it is strongly recommended that you study the material until you thoroughly understand the material covered by these questions.

Questions

Question 1.

True or False: The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text.

Answer 1

Question 2

True or False: The Jupyter Notebook is the same as JupyterLab.

Answer 2

Question 3

True or False: Among other things, the Markdown syntax makes it possible for you create the following elements in a Jupyter notebook.

Answer 3

Question 4

True or False: Markdown headers come only in one size fits all.

Answer 4

Question 5

True or False: There are at least two ways to create links to external resources in Markdown:

Answer 5

Question 6

True or False: You can insert LaTex formatted material in a Jupyter notebook.

Answer 6

Question 7

True or False: A plt.showFig statement can be used to display a figure in the notebook.

Answer 7

Question 8

True or False: A plt.savefig statement can be used to save a figure in an output image file.

Answer 8

Question 9

True or False: It is not possible to import images, videos, and other components and to display those components in your notebook.

Answer 9

Question 10

True or False: You can include code, but not markdown in a Jupyter notebook.

Answer 10


Answers

Answer 10

False

Explanation

You can include both code and markdown text (such as this text) in your notebook.

Back to Question 10

Answer 9

False

Explanation

It is possible to import images, videos, and other components and to display those components in your notebook.

Back to Question 9

Answer 8

True

Back to Question 8

Answer 7

False

Explanation

The correct statement is plt.show.

Back to Question 7

Answer 6

True

Back to Question 6

Answer 5

True

Back to Question 5

Answer 4

False

Explanation

Markdown allows you to create headers of varying sizes much like you would typically see on an HTML web page.

Back to Question 4

Answer 3

True

Back to Question 3

Answer 2

False

Explanation

Although the names are similar, the Jupyter Notebook is not the same as JupyterLab. JupyterLab claims to enable users to work with the core building blocks of the classic Jupyter Notebook in a more flexible and integrated manner.

Back to Question 2

Answer 1

True

Back to Question 1

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • File name: JupyterReview.htm
  • Published: 09/04/18
  • Copyright 2018, Richard Baldwin

-end-