Python Basics Quiz

Python Basics Quiz

3rd Grade

9 Qs

quiz-placeholder

Similar activities

Grade 2 - MS Word Interface

Grade 2 - MS Word Interface

1st - 4th Grade

10 Qs

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

Ban-phim-may-tinh

Ban-phim-may-tinh

3rd Grade

10 Qs

phần mềm trình chiếu

phần mềm trình chiếu

1st - 12th Grade

10 Qs

Computer Quiz by Tr.Sadaf

Computer Quiz by Tr.Sadaf

1st - 5th Grade

10 Qs

CSS Quiz

CSS Quiz

1st - 3rd Grade

10 Qs

MS Paint

MS Paint

1st - 4th Grade

13 Qs

FHPS Cyber wellness consolidation 2021

FHPS Cyber wellness consolidation 2021

1st - 5th Grade

8 Qs

Python Basics Quiz

Python Basics Quiz

Assessment

Quiz

Computers

3rd Grade

Hard

Created by

alex monyi

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...

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the basic data type to store whole numbers in Python?

int

boolean

float

string

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to define a function in Python?

def

func

define

create

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of 5 + 3 * 2 in Python?

15

16

11

10

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

2variable

variable_name!

my_variable

variable2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of print('Hello, World!') in Python?

Hi, Earth!

Goodbye, World!

Hello, World!

Hello, Universe!

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop is used to iterate over a sequence of elements in Python?

while

for

if

do-while

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of 'hello' + 'world' in Python?

hello world

h e l l o w o r l d

helloworld!

helloworld

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a mutable data type in Python?

Integer

Tuple

String

List

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of 2 ** 3 in Python?

8

6

4

10