
set - 13

Quiz
•
Computers
•
University
•
Hard
Viswas MCV
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the maximum length of a Python identifier?
32
16
128
No fixed Length
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How is a code block indicated in Python?
Brackets
Indentation
Key
None
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code snippet?
def solve(a, b):
return b if a == 0 else solve(b % a, a)
print(solve(20, 50))
10
20
50
1
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is the proper syntax to check if a particular element is present in a list?
if ele in list
if not ele not in list
Both A and B
None of the above
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What are the values of the following Python expressions?
2**(3**2)
(2**3)**2
2**3**2
512, 64, 512
512, 512, 512
64, 512, 64
64, 64, 64
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following Python code?
print("abc. DEF".capitalize())
Abc. def
abc. def
Abc. Def
ABC. DEF
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the value of ‘result’ in following Python program?
list1 = [1,2,3,4]
list2 = [2,4,5,6]
list3 = [2,6,7,8]
result = list()
result.extend(i for i in list1 if i not in (list2+list3) and i not in result)
result.extend(i for i in list2 if i not in (list1+list3) and i not in result)
result.extend(i for i in list3 if i not in (list1+list2) and i not in result)
[1, 3, 5, 7, 8]
[1, 7, 8]
[1, 2, 4, 7, 8]
error
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
BT1 2023

Quiz
•
University
11 questions
C4M2-S7-J1-ListsetTuples

Quiz
•
University
15 questions
Scope of Variables in Python

Quiz
•
1st Grade - Professio...
15 questions
PYTHON

Quiz
•
University
12 questions
Python Quiz 1.4

Quiz
•
University
15 questions
Week 7 Quiz

Quiz
•
University
10 questions
Understanding Procedures in Python

Quiz
•
9th Grade - University
15 questions
Programming - Screening Test

Quiz
•
3rd Grade - Professio...
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade