Python Basics Quiz

Python Basics Quiz

5th Grade

10 Qs

quiz-placeholder

Similar activities

Python Basics Quiz

Python Basics Quiz

Python Basics Quiz

Python Basics Quiz

Python May 3

Python May 3

Python Jr Quiz

Python Jr Quiz

Python Programming Quiz

Python Programming Quiz

Python Basics Quiz

Python Basics Quiz

Python Programming Quiz

Python Programming Quiz

Python Basics Quiz

Python Basics Quiz

Assessment

Quiz

Computers

5th Grade

Practice Problem

Medium

DOK Level 2: Skill/Concept, DOK Level 3: Strategic Thinking

Standards-aligned

Created by

Twilla Walton

Used 10+ times

FREE Resource

AI

Enhance your content in a minute

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

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct data type for the value `True` in Python?

String

Integer

Boolean

Float

Tags

DOK Level 2: Skill/Concept

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

`def myFunction:`

`function myFunction():`

`def myFunction():`

`myFunction() def:`

Tags

DOK Level 2: Skill/Concept

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the list `fruits = ["apple", "banana", "cherry"]`, how would you access the second item in the list?

`fruits[0]`

`fruits[1]`

`fruits[2]`

`fruits[-1]`

Tags

DOK Level 2: Skill/Concept

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

Greater

Smaller

Error

None

Tags

DOK Level 2: Skill/Concept

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to open a file named `data.txt` for reading in Python?

`open("data.txt", "r")`

`open("data.txt", "w")`

`open("data.txt", "a")`

`open("data.txt", "x")`

Tags

DOK Level 2: Skill/Concept

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write a function `add_numbers` that takes two parameters and returns their sum. What is the correct implementation?

```python def add_numbers(a, b): return a + b ```

```python def add_numbers(a, b): print(a + b) ```

```python def add_numbers(a, b): a + b ```

```python def add_numbers(a, b): return a - b ```

Tags

DOK Level 3: Strategic Thinking

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the dictionary `student = {"name": "John", "age": 12, "grade": "7th"}`, how would you access the value associated with the key `"age"`?

`student["name"]`

`student["age"]`

`student["grade"]`

`student["12"]`

Tags

DOK Level 2: Skill/Concept

Create a free account and access millions of resources

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?

Discover more resources for Computers