Python Programming Quiz

Python Programming Quiz

6th Grade

6 Qs

quiz-placeholder

Similar activities

Parts of Keyboard and Correct Typing

Parts of Keyboard and Correct Typing

4th - 8th Grade

10 Qs

Multimedia Advanced Practice #2

Multimedia Advanced Practice #2

6th - 7th Grade

10 Qs

การเขียนโปรแกรมไพทอน

การเขียนโปรแกรมไพทอน

6th - 9th Grade

10 Qs

app inv review

app inv review

6th Grade

7 Qs

Тест на знание основ Python

Тест на знание основ Python

6th - 8th Grade

10 Qs

Python2 M1

Python2 M1

5th - 12th Grade

11 Qs

You know what it is

You know what it is

6th - 12th Grade

6 Qs

HTML quiz - Day 3

HTML quiz - Day 3

1st - 12th Grade

10 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Computers

6th Grade

Hard

Created by

Kai CHOW

Used 1+ times

FREE Resource

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