Homework 4- Data Types and Selection

Homework 4- Data Types and Selection

8th Grade

10 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

8th - 10th Grade

10 Qs

Python - Y8 lesson 1

Python - Y8 lesson 1

8th Grade

12 Qs

Python

Python

7th - 8th Grade

13 Qs

Homework 1- Python Basics

Homework 1- Python Basics

8th Grade

10 Qs

Python (Selection)

Python (Selection)

8th - 10th Grade

13 Qs

year 8 lesson 2 quiz - python

year 8 lesson 2 quiz - python

8th - 10th Grade

14 Qs

Python Basic

Python Basic

6th - 8th Grade

10 Qs

Python Intro

Python Intro

8th - 9th Grade

10 Qs

Homework 4- Data Types and Selection

Homework 4- Data Types and Selection

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Kristie Hallmark

Used 6+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the data type of the value `7.5` in Python?

String

Integer

Float

Boolean

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a common syntax error in Python?

Forgetting to close a bracket

Using a variable without declaring it

Dividing by zero

Accessing an index out of range

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python if 2 < 4: print("Yes") else: print("No") ```

No

Yes

Error

Nothing

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a string in Python?

`3.14`

`42`

`"Hello"`

`False`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python x = 3 if x > 5: print("High") else: print("Low") ```

High

Low

Error

Nothing

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a Boolean value in Python?

`0`

`"False"`

`False`

`1.0`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python if True: print("Correct") else: print("Incorrect") ```

Correct

Incorrect

Error

Nothing

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?