List 2

List 2

12th Grade

10 Qs

quiz-placeholder

Similar activities

Class12: CS - Ch1 : Python Revision Tour(part1)

Class12: CS - Ch1 : Python Revision Tour(part1)

12th Grade

10 Qs

Who know me better challenge

Who know me better challenge

1st - 12th Grade

7 Qs

Animal Crossing

Animal Crossing

KG - 12th Grade

10 Qs

list 7

list 7

12th Grade

10 Qs

HARDEST quiz

HARDEST quiz

KG - University

10 Qs

Guess the food by the emoji

Guess the food by the emoji

4th Grade - University

14 Qs

Random Quizizz

Random Quizizz

KG - University

13 Qs

List 2

List 2

Assessment

Quiz

Other

12th Grade

Easy

Created by

Amy Austin

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does negative indexing in Python lists start with?

-1 referring to the last item

0 referring to the first item

1 referring to the second item

-2 referring to the second last item

Answer explanation

Negative indexing in Python lists starts with -1, referring to the last item in the list.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to determine if an item is present in a list?

in keyword

exists() method

check() method

find() method

Answer explanation

The 'in' keyword is used to determine if an item is present in a list, making it the correct choice among the options provided.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of print(thislist[2:5]) if thislist = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"]?

['banana', 'cherry', 'orange', 'kiwi']

['cherry', 'orange', 'kiwi', 'melon']

['banana', 'cherry', 'orange']

['cherry', 'orange', 'kiwi']

Answer explanation

The result of print(thislist[2:5]) will be ['cherry', 'orange', 'kiwi'] because it selects elements starting from index 2 up to, but not including, index 5 from the list thislist.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you access the last item of a list?

Using the index 0

Using the index -1

Using the index 1

Using the method last()

Answer explanation

To access the last item of a list, you can use the index -1. This is because -1 represents the last element in a list in Python.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you slice a list in Python to obtain a subset of its elements?

By specifying the start and end index of the slice

Using a specific list method designed for slicing

By specifying the maximum value to include

Using the list's length property

Answer explanation

To obtain a subset of elements from a list in Python, you can slice it by specifying the start and end index of the slice.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the index of the first item in a Python list?

It does not have an index

1

-1

0

Answer explanation

The index of the first item in a Python list is 0, making the correct answer choice '0'. Lists in Python are zero-indexed, meaning the first element is at index 0.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

If you want to return the items from the beginning to, but NOT including, 'kiwi', which slicing would you use?

[:4]

[:-3]

[:3]

[0:-3]

Answer explanation

To return items from the beginning to, but not including, 'kiwi', you would use the slicing [:4] as it includes items up to index 3 but not including index 4 where 'kiwi' is located.

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?