串列

串列

KG - Professional Development

10 Qs

quiz-placeholder

Similar activities

Java Math Review

Java Math Review

10th - 12th Grade

10 Qs

Python-Day-3

Python-Day-3

12th Grade - University

15 Qs

Python test

Python test

KG

10 Qs

python (loops)

python (loops)

11th Grade

10 Qs

Idiomatic Python

Idiomatic Python

University

13 Qs

Python basic 2

Python basic 2

University

15 Qs

Pseudo Code

Pseudo Code

1st - 3rd Grade

10 Qs

Edhesive Python Unit 4: Test Review

Edhesive Python Unit 4: Test Review

10th - 11th Grade

10 Qs

串列

串列

Assessment

Quiz

Mathematics, Computers, World Languages

KG - Professional Development

Medium

Created by

闕河正 闕河正

Used 25+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

print(a[1] + a[2])

2

3

5

23

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

print(a[2:3])

[5,6]

[2,3]

[3]

[4]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = [3,4]

b = [4,5]

print(a+b)

[3,4,4,5]

[7,9]

[4,5,3,4]

[3,4,5]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = [3,4]

print(a*2)

[3,3,4,4]

[3,4,3,4]

[6,8]

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = [3,4]

print(a[1] + 5)

9

8

[3,9]

[8,9]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = [3,4]

print(a[1] * 5)

20

15

[15,4]

[3,4,4,4,4,4]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = [3,4,5]

b = [5,7,9]

print(a[1:] + b[:-1])

[4,5,5,7]

[3,4,5,7]

[3,4,5,5,7,9]

[3,4,5]

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?