Problem Solving using Python and R - UNIT II - List

Problem Solving using Python and R - UNIT II - List

12th Grade

10 Qs

quiz-placeholder

Similar activities

H466 - Arrays, Records, Tuples and Lists

H466 - Arrays, Records, Tuples and Lists

11th Grade - University

10 Qs

Sort

Sort

9th - 12th Grade

10 Qs

Sorting Algorithms

Sorting Algorithms

9th - 12th Grade

10 Qs

CS Python Fundamentals Quiz 8 PRACTICE

CS Python Fundamentals Quiz 8 PRACTICE

9th - 12th Grade

10 Qs

Quiz 23-05-2021

Quiz 23-05-2021

12th Grade

10 Qs

CP M.8.1-8.5 Quiz Review

CP M.8.1-8.5 Quiz Review

9th - 12th Grade

15 Qs

list in python

list in python

10th - 12th Grade

15 Qs

CPM9.1-9.3 Quiz Review

CPM9.1-9.3 Quiz Review

9th - 12th Grade

15 Qs

Problem Solving using Python and R - UNIT II - List

Problem Solving using Python and R - UNIT II - List

Assessment

Quiz

Computers

12th Grade

Medium

Created by

MS.SHYAMALADEVI C

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the method used to add an element at the end of a list in Python?

append()

add()

insert()

extend()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will create a list in Python?

list = (1, 2, 3)

list = [1, 2, 3]

list = {1, 2, 3}

list = <1, 2, 3>

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you access the first element of a list named `my_list`?

my_list[0]

my_list(1)

my_list{1}

my_list.first()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code: `print([1, 2, 3] + [4, 5])`?

[1, 2, 3, 4, 5]

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

[4, 5, 1, 2, 3]

[1, 2, 3, 5]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to remove an item from a list by its value?

delete()

remove()

discard()

pop()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of `len([1, 2, 3, 4])`?

3

4

5

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is true about lists in Python?

Lists are immutable.

Lists can contain elements of different data types.

Lists can only contain integers.

Lists cannot be nested.

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?