Python Quiz 1

Python Quiz 1

8th Grade

9 Qs

quiz-placeholder

Similar activities

Python Introduction Quiz

Python Introduction Quiz

8th - 9th Grade

12 Qs

Python Intro

Python Intro

7th - 8th Grade

12 Qs

KD-1 Dasar pemrograman python

KD-1 Dasar pemrograman python

10th Grade

10 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

Python - Week 1

Python - Week 1

8th - 10th Grade

10 Qs

Introduction to Programming

Introduction to Programming

9th Grade

12 Qs

Printing in Python

Printing in Python

7th - 9th Grade

10 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

Python Quiz 1

Python Quiz 1

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Susan Abraham

FREE Resource

9 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will this code print?

print("Python is fun!")

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will this code print?

# This is a comment

print("Hello!")

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will this code print?

# print("Don’t print me")

print("Print me instead")

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False  

#This is a comment

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False  

In Python, everything after # is ignored by the computer.

True

False

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fix the Error

print("Hello\nWorld)

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fix the Error

print("Welcome to Python)

8.

OPEN ENDED QUESTION

3 mins • 1 pt

Fix the Error

print("She said, "Hello!"")

Evaluate responses using AI:

OFF

9.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fix the Error

print("Line 1 \n Line 2 \n Line 3)