Python Basics Quiz

Python Basics Quiz

9th Grade

15 Qs

quiz-placeholder

Similar activities

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

Python Programming Quiz

Python Programming Quiz

9th Grade - University

20 Qs

python String and comment

python String and comment

3rd Grade - University

13 Qs

Python Math

Python Math

1st - 12th Grade

10 Qs

Strings, Lists & Tuples

Strings, Lists & Tuples

9th - 12th Grade

20 Qs

Python_2R

Python_2R

KG - Professional Development

20 Qs

Quiz1_HPB2021_2010t1

Quiz1_HPB2021_2010t1

1st - 12th Grade

10 Qs

Python - Quiz

Python - Quiz

9th - 11th Grade

17 Qs

Python Basics Quiz

Python Basics Quiz

Assessment

Quiz

Computers

9th Grade

Easy

Created by

Kimberly Stears

Used 1+ times

FREE Resource

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

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?