Python Basics Quiz for Grade 8

Python Basics Quiz for Grade 8

8th Grade

10 Qs

quiz-placeholder

Similar activities

Year 7,8,9 Variables

Year 7,8,9 Variables

6th - 8th Grade

10 Qs

Express Course (v2024) Quiz 3

Express Course (v2024) Quiz 3

6th - 8th Grade

10 Qs

Prova PRONATEC

Prova PRONATEC

6th - 8th Grade

10 Qs

Unit3_9.3.4_Activity3

Unit3_9.3.4_Activity3

8th Grade

10 Qs

Quiz Google sheet inf 8 semester ganjil

Quiz Google sheet inf 8 semester ganjil

8th Grade

10 Qs

Selection Programming_If condition

Selection Programming_If condition

8th Grade - University

15 Qs

Examen de introducción a python

Examen de introducción a python

6th - 8th Grade

8 Qs

Quiz de Lógica em Python

Quiz de Lógica em Python

6th Grade - University

8 Qs

Python Basics Quiz for Grade 8

Python Basics Quiz for Grade 8

Assessment

Quiz

Information Technology (IT)

8th Grade

Hard

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid variable name in Python?

1st_variable

firstVariable

first-variable

first variable

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

Greater

Smaller

Error

None

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the error in the following code: ```python for i in range(5) print(i) ```

Missing colon (:) after range(5)

Indentation error

Syntax error in print statement

No error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python x = 3 y = 5 if x < y and y > 2: print("True") else: print("False") ```

True

False

Error

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a logical operator in Python?

and

or

not

then

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? ```python for i in range(3): print(i) ```

0 1 2

1 2 3

0 1 2 3

1 2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about indentation in Python is true?

Indentation is optional in Python.

Indentation is used to define blocks of code.

Indentation can be replaced with semicolons.

Indentation is only required in loops.

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?