Python Programming Quiz

Python Programming Quiz

6th Grade

6 Qs

quiz-placeholder

Similar activities

Algorithms

Algorithms

2nd - 6th Grade

11 Qs

Python list and tuple

Python list and tuple

6th - 8th Grade

10 Qs

Banana Tales Part I (1-40)

Banana Tales Part I (1-40)

6th - 8th Grade

10 Qs

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

python - revision 3

python - revision 3

6th - 8th Grade

7 Qs

F3 CL Python Ch01

F3 CL Python Ch01

1st - 12th Grade

10 Qs

Python Math

Python Math

1st - 12th Grade

10 Qs

simple hacking

simple hacking

5th Grade - Professional Development

5 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Computers

6th Grade

Hard

Created by

Kai CHOW

Used 1+ times

FREE Resource

AI

Enhance your content

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

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

BB> What is the output of the following Python program?

for i in range(5):

print(i+1, end ='')

01234

00000

12345

5

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

AA> What is the output of the following Python program? A = [18, 20, 16, 40] print(A[1])

A. 18

B. 20

C. 16

D. 40

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

CC>The following Python program is written to search for a number target in the array num. num = [4, 7, 9, 2, 5] target = int(input()) found = False

____

if found: print('The target is in the list') else: print('The target is not in the list') Which of the following is the most suitable option to fill in the blank?

A. for i in range(5): if num[i] == target: found = True

B. for i in range(5): if num[i] == target: found = False

C. while not found: if num[i] == target: found = True

D. if num[i] == target: found = True

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

DD> Which of the following is the output of the Python program below?

num = [ 1, 2, 3, 4, 5 ]

for i in range(1, 3): print(num[ i ], end = “ ”)

A. 1 2

B. 1 2 3

C. 2 3

D. 2 3 4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

EE>The following Python program is used to print all the names in the list. Which of the following lines can be used to fill in the blank?

name = [“Peter”, “Donald”, “Chris”, “Ben”]

__________

print(name[ i ])

A. for i in range(0, 3):

B. for i in range(0, 4):

C. while i < 3:

D. while i < 4:

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

FF> Study the following Python program and answer the question below. List = [1]*6 List[1] = 8 List[2] = 16 print(List[2] + List[4] + List[1])

A. 25

B. 24

C. 26

D. 18