Python Basics + Comments

Python Basics + Comments

Professional Development

8 Qs

quiz-placeholder

Similar activities

Deputy PST

Deputy PST

Professional Development

10 Qs

Post Order Review

Post Order Review

Professional Development

10 Qs

Is it a Reopening or Redetermination?

Is it a Reopening or Redetermination?

12th Grade - Professional Development

10 Qs

day1

day1

Professional Development

13 Qs

Basic Microbit

Basic Microbit

11th Grade - Professional Development

10 Qs

Quiz July 2018

Quiz July 2018

Professional Development

10 Qs

Getting to know A K Shaw :)

Getting to know A K Shaw :)

Professional Development

12 Qs

FinTech 19-3 Blockchain Python

FinTech 19-3 Blockchain Python

Professional Development

7 Qs

Python Basics + Comments

Python Basics + Comments

Assessment

Quiz

Other

Professional Development

Easy

Created by

DirectEd Development

Used 284+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of the print() function in Python?

Perform complex calculations

Create a new file

Display a specified message on the screen

Run Jupyter Notebook

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What should you do if you encounter an error while running your code in Jupyter Notebook?

Restart your computer

Ignore the error and continue

Copy-paste the code from the instructions

Compare your code with the provided code or Google the error code

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens when you put a # (octothorpe) character at the beginning of a line in your Python script?

It turns the line into a comment, and Python ignores it.

It causes an error in the code.

It prints the line twice.

It creates a new line of code.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you make your script print only one of the lines? (using comments)

Put a # at the beginning of all lines except the desired one.

Delete all line containing print()

Use the input() function.

Use the print() function twice

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Do you need to include the study drills in the files you submit?

No, they are optional.

Yes, include the study drills in the files you submit.

Only submit exercise files without study drills.

No, submit only the code provided in the exercise.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of comments in Python?

To disable or comment out code.

To disable or comment out code.

To run as part of the program.

To add complexity to the code.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which character is commonly used to indicate the beginning of a comment in Python?

$

*

#

@

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens to the text following the # character in a Python program?

It is ignored by Python.

It causes an error.

It becomes a part of a string.

It is executed as code.