List - Class XI

List - Class XI

11th Grade

10 Qs

quiz-placeholder

Similar activities

Python-Basic

Python-Basic

3rd Grade - University

15 Qs

list in python

list in python

10th - 12th Grade

15 Qs

نادي البرمجة ضواحي القدس م4

نادي البرمجة ضواحي القدس م4

5th - 11th Grade

13 Qs

Python List Quiz

Python List Quiz

11th Grade

10 Qs

untitled

untitled

8th Grade - University

11 Qs

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

computer science

computer science

11th Grade

13 Qs

python(strings)

python(strings)

11th Grade

10 Qs

List - Class XI

List - Class XI

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Rachna Bajaj

Used 21+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following commands will create a list?

list1 = list()

list1 = []

list1 = list([1, 2, 3])

all of the mentioned

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output when we execute list(“hello”)?

[‘hello’]

[‘h’, ‘e’, ‘l’, ‘l’, ‘o’]

[‘llo’]

[‘olleh’]

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the following Python code?

a=[10,23,56,[78]]

b=list(a)

a[3][0]=95

a[1]=34

print(b)

[10,34,56,[95]]

[10,23,56,[78]]

[10,23,56,[95]]

[10,34,56,[78]]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following would give an error?

list1=[]

list1=[]*3

list1=[2,8,7]

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is True regarding lists in Python?

Lists are immutable.

Size of the lists must be specified before its initialization

Elements of lists are stored in contagious memory location.

size(list1) command is used to find the size of lists.

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of below Python code?

list1=[8,0,9,5]


print(list1[::-1])

[5,9,0,8]

[8,0,9]

[8,0,9,5]

[0,9,5]

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of following Python code?

list1=["Python","Java","c","C","C++"]


print(min(list1))

c

C++

C

min function cannot be used on string elements

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?