Python Basics Quiz

Python Basics Quiz

9th Grade

15 Qs

quiz-placeholder

Similar activities

IT - TYPING TUTOR

IT - TYPING TUTOR

9th Grade

10 Qs

Intro to Robotics

Intro to Robotics

9th Grade

14 Qs

Security and Ethics

Security and Ethics

9th - 12th Grade

17 Qs

Design your website

Design your website

7th - 12th Grade

20 Qs

CIA Mid-Term Review 1

CIA Mid-Term Review 1

9th - 10th Grade

17 Qs

Computational Thinking - Review

Computational Thinking - Review

7th - 9th Grade

15 Qs

PC1.8 Evaluate computer program

PC1.8 Evaluate computer program

9th Grade

10 Qs

Coding Quiz

Coding Quiz

6th - 10th Grade

15 Qs

Python Basics Quiz

Python Basics Quiz

Assessment

Quiz

Computers

9th Grade

Practice Problem

Easy

Created by

Kimberly Stears

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What data type would you use to store the value `True` or `False` in Python?

int

float

bool

string

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to define a function in Python?

function myFunction():

def myFunction():

function: myFunction()

define myFunction():

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python x = 10 if x > 5: print("Hello") else: print("Goodbye") ```

Hello

Goodbye

SyntaxError

None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you add an element `5` to the end of a list named `myList`?

myList.add(5)

myList.append(5)

myList.insert(5)

myList[5] = 5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following creates a dictionary named `myDict` with a key `name` and its value `John`?

myDict = dict("name": "John")

myDict = {"name": "John"}

myDict = dict(name="John")

myDict = ["name": "John"]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet? ```python print(type(3.14)) ```

int

float

string

bool

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which control structure allows you to execute a block of code multiple times?

If-Else

For loop

Function

Try-Except

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?