Kiểm tra cuối HK2-Khối 10-NH2023_2024

Kiểm tra cuối HK2-Khối 10-NH2023_2024

10th Grade

40 Qs

quiz-placeholder

Similar activities

BASEBALL - Buổi 2

BASEBALL - Buổi 2

9th Grade - University

45 Qs

tin bài 12 14

tin bài 12 14

9th - 12th Grade

38 Qs

Tin10.List_nhập_tổng_tích_hàm

Tin10.List_nhập_tổng_tích_hàm

10th Grade

39 Qs

Tùm lum

Tùm lum

9th - 12th Grade

40 Qs

Túi mù 2

Túi mù 2

9th Grade - University

37 Qs

10-Pengenalan Python

10-Pengenalan Python

10th Grade

36 Qs

TRUNG THU 2023

TRUNG THU 2023

9th - 12th Grade

45 Qs

ôn tập thi cuối học kì 1 lớp 10

ôn tập thi cuối học kì 1 lớp 10

10th Grade

36 Qs

Kiểm tra cuối HK2-Khối 10-NH2023_2024

Kiểm tra cuối HK2-Khối 10-NH2023_2024

Assessment

Quiz

Other

10th Grade

Easy

Created by

linh nguyen

Used 2+ times

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

ds=[45, 0, 50, 7, 10]

ds.sort()

print(ds)

[0, 7, 10, 45, 50]

[50, 45, 10, 7, 0]

Báo lỗi

Tất cả sai

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

ds=[45, 0, 50, 7, 10]

a="hello"

ds.insert(0,a)

print(ds)

['hello', 45, 0, 50, 7, 10]

[45, 0, 50, 7, 10, 'hello']

[45, 'hello',  0, 50, 7, 10]

Báo lỗi

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

ds=[45, 0, 50, 7, 10]

ds.pop(3)

print(ds)

[45, 0, 50, 10]

[45, 0, 7, 10]

[45, 0, 50, 7, 10]

Báo lỗi

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

ds=[45, 0, 50, 7, 10]

ds.append(“hello”)

print(ds)

Báo lỗi

[45, 0, 50, 7, 10]

[45, 0, 50, 7, 10, “hello”]

[45, 0, 50, 7, “hello”]

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

ds=[45, 0, 50, 7, 10]

print(ds[0])

0

45

báo lỗi

10

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

ds=[i for i in range (10)]

print(ds)

báo lỗi

0 1 2 3 4 5 6 7 8 9

[0 1 2 3 4 5 6 7 8 9]

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Trong Python, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?

a=”hello python”

b=”tin học”

print(a.replace(b,”python”))

hello python

hello tin học

python

tin học

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?