Python Programming Quiz

Quiz
•
Computers
•
6th Grade
•
Hard
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
Similar Resources on Wayground
10 questions
Python тілінде программалау

Quiz
•
1st - 10th Grade
10 questions
COMPUTER SHORTCUT KEYS

Quiz
•
6th Grade - Professio...
11 questions
Python Projects Quiz

Quiz
•
6th Grade - University
10 questions
Google Docs

Quiz
•
3rd - 6th Grade
10 questions
Grade 6- PRINT statement in Python

Quiz
•
6th Grade
10 questions
Python Variables

Quiz
•
6th Grade
8 questions
Информатика

Quiz
•
6th Grade
10 questions
HTML Forms

Quiz
•
6th - 7th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
8 questions
Time Management

Quiz
•
6th Grade
15 questions
Acceptable Use Policy (Quiz)

Quiz
•
6th - 8th Grade
25 questions
Career Vs. Job

Quiz
•
6th - 8th Grade
20 questions
Copyright and Fair Use

Quiz
•
6th - 8th Grade
21 questions
Input Output Storage Device

Quiz
•
5th - 8th Grade