Python_Lists

Python_Lists

12th Grade - Professional Development

5 Qs

quiz-placeholder

Similar activities

Python For

Python For

University

10 Qs

Day 2

Day 2

Professional Development

10 Qs

Graficas con matlab y pandas

Graficas con matlab y pandas

University

10 Qs

Python Training - Basics

Python Training - Basics

Professional Development

10 Qs

7. PYTHON FUNCTIONS - 3

7. PYTHON FUNCTIONS - 3

12th Grade

10 Qs

Java Basics

Java Basics

University

10 Qs

Ch 3 Stack

Ch 3 Stack

12th Grade

10 Qs

Python Dictionaries

Python Dictionaries

University

10 Qs

Python_Lists

Python_Lists

Assessment

Quiz

Computers

12th Grade - Professional Development

Hard

Created by

Pravallika Nakarikanti

Used 11+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are true of Python lists?

These represent the same list:

['a', 'b', 'c'] and ['c', 'a', 'b']

All elements in a list must be of the same type

A given object may appear in a list more than once

A list may contain any type of object except another list

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

Consider the above list a. Which of the following outputs are correct?(Multi Correct)

Media Image
Media Image
Media Image
Media Image

3.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

x = [10, [3.141, 20, [30, 'baz', 2.718]], 'foo']

Consider the above list x what is the expression that return 'z' in 'baz' from x

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

x = [10, [3.141, 20, [30, 'baz', 2.718]], 'foo']

Consider the list x shown above. What is the expression that returns ['baz', 2.718] from x. (Use Indexing and Slicing).

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

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

Consider the list a as shown above. Select all of the following statements that remove the middle element 3 from a so that it equals [1, 2, 4, 5]:

del a[2]

a.remove(3)

a[2:3] = []

a[2:2] = []