List - Class XI

List - Class XI

11th Grade

10 Qs

quiz-placeholder

Similar activities

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

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

9th Grade - University

8 Qs

Pyflask2020

Pyflask2020

KG - Professional Development

10 Qs

AP CSP - Python Lists and Arrays

AP CSP - Python Lists and Arrays

9th - 12th Grade

10 Qs

python String and comment

python String and comment

3rd Grade - University

13 Qs

Python Fundamentals and Programming

Python Fundamentals and Programming

11th - 12th Grade

13 Qs

Python Basics

Python Basics

KG - University

15 Qs

Getting Started with Python

Getting Started with Python

11th Grade

15 Qs

Quiz1_HPB2021_2010t1

Quiz1_HPB2021_2010t1

1st - 12th 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?