Class XI B Python Lists

Class XI B Python Lists

11th Grade

6 Qs

quiz-placeholder

Similar activities

Harry Potter Quiz - HF Slytherin

Harry Potter Quiz - HF Slytherin

KG - Professional Development

10 Qs

Harry Potter Quiz

Harry Potter Quiz

KG - University

10 Qs

Harry Potter

Harry Potter

11th Grade

10 Qs

Sadie Quiz

Sadie Quiz

KG - University

11 Qs

Harry Potter

Harry Potter

KG - Professional Development

10 Qs

Name that Movie

Name that Movie

1st Grade - University

10 Qs

Flower 10 colours

Flower 10 colours

1st - 12th Grade

10 Qs

Harry Potter (Don't play if you haven't seen harry potter!!)

Harry Potter (Don't play if you haven't seen harry potter!!)

3rd Grade - Professional Development

11 Qs

Class XI B Python Lists

Class XI B Python Lists

Assessment

Quiz

Other

11th Grade

Easy

Created by

Anju Mathew

Used 11+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

List items have an index number. In the following list, which item has the index number of 3?

["Jeffry", "Harry", "Jessy", "John", "Harry", "Harry"]

"John"

"Harry"

"Jesse"

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

List elements can be chaged later .ie list is-------------

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider this list, what will be the highest index the list can have:

li=[1,2,3,4,5]

5

4

3

0

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of this code?

x

Y

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to create an empty list called colours, which of the following pieces of code is correct?

colours = [ ]

colours = ( )

colours = { }

colors = [ ]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of program below?

L=[10,20]

print(L*2)

[10,20][10,20]

[10,20,10,20]

[[10,20],[10,20]]

[10,10,20,20]