Python 3 for Beginners: Lists, Loops, and Exceptions Handling

Python 3 for Beginners: Lists, Loops, and Exceptions Handling

Assessment

Interactive Video

Information Technology (IT), Architecture

University

Hard

Created by

Quizizz Content

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you access the last item in a Python list?

Using index -1

Using index -2

Using index 0

Using index 1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method would you use to add a single item to the end of a list?

append()

add()

extend()

insert()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if you try to find the index of an item not present in the list using the index method?

It will return -1

It will return None

It will return the last index

It will throw an exception

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function would you use to create a new sorted list without modifying the original list?

arrange()

sort()

sorted()

order()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of a try-except block in Python?

To iterate over a list

To sort a list

To handle exceptions gracefully

To create a list