Python Basics Review Quiz 5.1.5 - 5.1.11 CodeHS

Python Basics Review Quiz 5.1.5 - 5.1.11 CodeHS

9th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

KD-1 Dasar pemrograman python

KD-1 Dasar pemrograman python

10th Grade

10 Qs

Understanding Procedures in Python

Understanding Procedures in Python

9th Grade - University

10 Qs

Python Recap Challenge

Python Recap Challenge

10th Grade

13 Qs

Python Codehs

Python Codehs

7th - 12th Grade

10 Qs

Python Selection

Python Selection

8th - 9th Grade

10 Qs

Python Intro 1

Python Intro 1

7th - 12th Grade

11 Qs

PF Unit  10

PF Unit 10

9th Grade - University

10 Qs

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

Python Basics Review Quiz 5.1.5 - 5.1.11 CodeHS

Python Basics Review Quiz 5.1.5 - 5.1.11 CodeHS

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Created by

Michele Templeton Freeman

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

How to display text on the screen in Python?

display

output

print

input

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is a sequence of characters in quotes called in Python?

integer

float

boolean

string

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What happens when you click Run in Python?

program ends

computer shuts down

console window closes

the interpreter executes the program

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is a Python program?

a conditional statement

a sequence of instructions

a mathematical equation

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which print statement will run first in a program with two print statements?

the second print statement

both print statements simultaneously

the first print statement

none of the print statements

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What type of quotes are used for printing inside parentheses?

brackets

double quotes

backticks

single quotes

7.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which Python code segment will display “Hello, world!” on the screen?

print("Hello, world!")

display "Hello, world!"

print "Hello, world!"

print(Hello, world!)

8.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Type the code you would use to print the following to the screen:

I attend Riverside High School.