
QUIZ -21

Quiz
•
Computers
•
12th Grade - University
•
Hard

shanmugaraja .
Used 2+ times
FREE Resource
8 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is incorrect file handling mode in Python?
r
x
t+
b
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following code
print('PYnative ', end='//')
print(' is for ', end='//')
print(' Python Lovers', end='//')
PYnative /
is for /
Python Lovers /
PYnative //
is for //
Python Lovers //
PYnative // is for // Python Lovers //
PYnative /is for /Python Lovers /
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of this code?
def func(val1, val2=2, val3=7, val4=1):
return val1**val2**val3
print(func(val2=2, val1=2, val3=4))
256
32768
65536
This code raises an exception
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How will you not create a dictionary?
d = {'milk': 50, 'celery': 40}
d = dict(milk=50, celery=40)
d = dict([ ('milk', 50), ('celery', 40) ])
d = { ('milk', 50), ('celery', 40) }
d = {} d['milk'] = 50 d['celery'] = 40
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the following code print?
a = [1, 2, 3]
a is a[:]
True
False
This code raises an exception
Error
6.
MULTIPLE SELECT QUESTION
45 sec • 1 pt
Which of these can you use as a dictionary key?
Please select 3 correct answers
'key'
'count;
['1','2']
('key','count')
5j
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the value of round(12.5) – round(11.5)?
1
0
2
3
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of this code?
l1 = [1, 2, 3]
l2 = l1
l3 = l1.copy()
l4 = list(l1)
l1[0] = [7]
print(l1, l2, l3, I4)
[7, 2, 3] [7, 2, 3] [1, 2, 3] [1, 2, 3]
[[7], 2, 3] [[7], 2, 3] [[7], 2, 3] [1, 2, 3]
[7, 2, 3] [7, 2, 3] [7, 2, 3] [1, 2, 3]
[[7], 2, 3] [[7], 2, 3] [1, 2, 3] [1, 2, 3]
Similar Resources on Wayground
10 questions
Array in C

Quiz
•
University
13 questions
Fortnite!

Quiz
•
KG - Professional Dev...
10 questions
Python debugging

Quiz
•
University
9 questions
Lección 3 E-thinking - python

Quiz
•
University
10 questions
Python - kl. 8

Quiz
•
7th - 12th Grade
9 questions
Unit 7 Review (AP Comp Sci A)

Quiz
•
12th Grade
10 questions
python strings

Quiz
•
University
12 questions
Arrays Intro

Quiz
•
9th - 12th 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
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade