Python Lists

Python Lists

Professional Development

50 Qs

quiz-placeholder

Similar activities

Aptitude & Math

Aptitude & Math

University - Professional Development

50 Qs

I Years_Python

I Years_Python

Professional Development

50 Qs

Quiz for Nagarro Drive

Quiz for Nagarro Drive

Professional Development

50 Qs

Round-1 Quiz

Round-1 Quiz

Professional Development

50 Qs

MST II

MST II

Professional Development

48 Qs

Domain 4: Web Applications

Domain 4: Web Applications

Professional Development

46 Qs

KCS General Knowledge 3

KCS General Knowledge 3

KG - Professional Development

50 Qs

Internal Exam Viva

Internal Exam Viva

Professional Development

50 Qs

Python Lists

Python Lists

Assessment

Quiz

Other

Professional Development

Hard

Created by

Ajay Tech

Used 76+ times

FREE Resource

50 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create an empty list in python

[ ]

{ }

( )

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

How to create a new empty list in python

[ ]

list ( )

list.init( )

create.list ( )

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

grades = [2.0, 3.0, 4.0]


Which of the following code can be used to iterate over the grades list ?

for grade in grades :

# todo

i = 0

while i < len(grades) :

#todo

i = i + 1

[print ( i ) for i in grades]

for i, grade in enumerate(grades) :

# todo

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

grades = [2.0, 3.0, 4.0]


How do you get the length of the list above

len(grades)

length(grades)

list.length(grades)

list.len(grades)

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

a = [ 1, 3, 5 ]

b = [ 7, 9, 11 ]


How do you merge these two lists ?

a + b

a.extend(b)

a.merge(b)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]


numbers [-3]


What is numbers [-3]

8

9

7

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

numbers = [1,2,3,4,5,6,7,8,9,10]


print ( numbers[-3] == numbers[7])


The output of the program above is

True

False

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?