set - 13

set - 13

University

10 Qs

quiz-placeholder

Similar activities

Scope of Variables in Python

Scope of Variables in Python

1st Grade - Professional Development

15 Qs

Pyflask2020

Pyflask2020

KG - Professional Development

10 Qs

Python Quiz - 4 Lists,Loops,String Manipulation

Python Quiz - 4 Lists,Loops,String Manipulation

University

15 Qs

Basic python

Basic python

University

10 Qs

Python: Chapter 7 - True or False (Lists and Tuples)

Python: Chapter 7 - True or False (Lists and Tuples)

9th Grade - University

8 Qs

2-列表与元组

2-列表与元组

University

10 Qs

Python_Quiz_2

Python_Quiz_2

University

15 Qs

BT1 2023

BT1 2023

University

10 Qs

set - 13

set - 13

Assessment

Quiz

Computers

University

Hard

Created by

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

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?