Python list, if

Python list, if

6th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Year 10 End Module Python Quiz

Year 10 End Module Python Quiz

10th - 11th Grade

24 Qs

GCSE Computer Science: Programming (Data Structures)

GCSE Computer Science: Programming (Data Structures)

9th - 10th Grade

20 Qs

test 4-1

test 4-1

6th Grade

18 Qs

History of the computer

History of the computer

12th Grade

20 Qs

Algorithms: Revision Questions

Algorithms: Revision Questions

8th - 10th Grade

20 Qs

4H 20 marzo

4H 20 marzo

9th Grade

20 Qs

List and Tuples

List and Tuples

9th - 12th Grade

22 Qs

Lists and Dictionaries

Lists and Dictionaries

11th Grade

25 Qs

Python list, if

Python list, if

Assessment

Quiz

Computers

6th - 12th Grade

Hard

CCSS
L.2.2C

Standards-aligned

Created by

Sahana Karunakar

Used 52+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the correct code for creating a list of names?

nameList = John, Harry, Jesse, John, Harry, Harry

nameList = ("John", "Harry", "Jesse", "John", "Harry", "Harry")

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList = [John, Harry, Jesse, John, Harry, Harry]

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these pieces of code would return the name "Harry" from the following list?

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList()

nameList[1]

NameList(4)

nameList["4"]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The list needs one more name added to the end - "Felipe". Which piece of code below would do this?

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList.append(Felipe)

append(nameList,"Felipe")

nameList.append["Felipe",7]

nameList.append("Felipe")

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

nameList = ["John", "Harry", "Jesse", "John", "Marry", "Larry"]

The list will be slice and show Harry and Jesse only. Which piece of code below would do this?

print(nameList[1:3])

print(nameList[0:1])

print(nameList[1:2])

print(nameList["Harry":"Jesse"])

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To insert an the string "Pedro" in the first position of a the nameList we use

nameList.append("Pedro, 1")

nameList.insert("Pedro",0)

nameList.insert(1, "Pedro")

nameList.insert(0, "Pedro")

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

variable.sort() will do what?

Sort the list into alphabetical order

Sort the list into reverse order

Create a new list

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

nameList = ["John", "Harry", "Jesse", "John", "Marry", "Larry"]

print(nameList.count("John"))

What would be the output

1

2

3

Error

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?