Python Quiz - Workbooks 1-5

Python Quiz - Workbooks 1-5

10th Grade

40 Qs

quiz-placeholder

Similar activities

Python Coding Language

Python Coding Language

8th - 12th Grade

40 Qs

Unit 1 Review - Python Programming

Unit 1 Review - Python Programming

9th - 12th Grade

35 Qs

Python MCQ

Python MCQ

9th - 12th Grade

40 Qs

Code.org APCSA Unit

Code.org APCSA Unit

9th - 12th Grade

40 Qs

COMPUTER 10  - ACTIVITY 5  - 2023-2024

COMPUTER 10 - ACTIVITY 5 - 2023-2024

10th Grade

35 Qs

Multidimensional list and tuples 2025

Multidimensional list and tuples 2025

9th - 12th Grade

44 Qs

Python Revision

Python Revision

7th - 11th Grade

35 Qs

python set 3

python set 3

9th - 12th Grade

41 Qs

Python Quiz - Workbooks 1-5

Python Quiz - Workbooks 1-5

Assessment

Quiz

Computers

10th Grade

Hard

Created by

r tingle

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function is used to take user input in Python?

print()

input()

read()

write()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

2variable

variable_name

variable-name

variable name

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

num1 = 1

num2 = 1

total = num1 + num2

print (total)

4

8

2

16

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? x = 10 if x > 5: print("Greater than 5") else: print("5 or less")

5 or less

Greater than 5

Error

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following code? x = int("10") + float("5.5") print(x)

15

15.5

TypeError

ValueError

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times will the loop run in the following code? for i in range(5): print(i)

4

5

6

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods can be used to display output in Python?

print()

write()

output()

Both write and print

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?