Python-05-2-Package

Python-05-2-Package

7 Qs

quiz-placeholder

Similar activities

Bài tập kiểu danh sách

Bài tập kiểu danh sách

10th Grade

10 Qs

Glau-e-Quiz

Glau-e-Quiz

University

10 Qs

Unit 6: Algebraic Expressions/Equations

Unit 6: Algebraic Expressions/Equations

6th - 8th Grade

11 Qs

Solving Inequalities - Hill - Test 3

Solving Inequalities - Hill - Test 3

9th Grade

7 Qs

Re-Teach: Whistleblowing Article

Re-Teach: Whistleblowing Article

9th - 12th Grade

8 Qs

Graduating from CSL Understanding Credits

Graduating from CSL Understanding Credits

KG - University

8 Qs

Python-05-2-Package

Python-05-2-Package

Assessment

Quiz

others

Hard

Created by

Chun-Jung Lin

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

Consider the following tuple: say_what=('say',' what', 'you', 'will') What is the result of the following say_what[-1] ?
'will'
'what'
'you'
'say '

2.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

Consider the following tuple A=(1,2,3,4,5), what is the result of the following:A[1:4]:
(2, 3, 4, 5)
(3, 4, 5)
(2, 3, 4)

3.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

Consider the following tuple A=(1,2,3,4,5). What is the result of the following: len(A)
6
5
4

4.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

Consider the following list B=[1,2,[3,'a'],[4,'b']]. What is the result of the following: B[3][1]
"c"
"b"
[4,"b"]

5.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the result of the following operation? [1,2,3]+[1,1,1]
TypeError
[1, 2, 3, 1, 1, 1]
[2,3,4]

6.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the length of the list A = [1] after the following operation: A.append([2,3,4,5])
2
5

7.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the result of the following: "Hello Mike".split()
["H"]
["HelloMike"]
["Hello","Mike"]