TRẮC NGHIỆM VUI PYTHON

TRẮC NGHIỆM VUI PYTHON

10th Grade

10 Qs

quiz-placeholder

Similar activities

TH10-Bai8-t1

TH10-Bai8-t1

10th Grade

10 Qs

Computer Hardware Components and Functions

Computer Hardware Components and Functions

9th - 12th Grade

10 Qs

Quiz về Kiểu Dữ Liệu List và Set (1)

Quiz về Kiểu Dữ Liệu List và Set (1)

7th Grade - University

15 Qs

BERFIKIR KOMPUTASIONAL

BERFIKIR KOMPUTASIONAL

10th Grade

10 Qs

Tin học 4 bài 3.

Tin học 4 bài 3.

4th Grade - University

5 Qs

Quiz Algoritma dan Pseudocode

Quiz Algoritma dan Pseudocode

10th Grade

10 Qs

LKPD I_Aplikasi Pengolah Kata

LKPD I_Aplikasi Pengolah Kata

10th Grade

15 Qs

Understanding Loops in C Programming

Understanding Loops in C Programming

1st Grade - University

15 Qs

TRẮC NGHIỆM VUI PYTHON

TRẮC NGHIỆM VUI PYTHON

Assessment

Quiz

Information Technology (IT)

10th Grade

Hard

Created by

Dung Tin

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Cú pháp đúng để viết vòng lặp for trong Python là gì?

for (i = 0; i < 5; i++)

for i in range(5):

for i to 5:

for each i in range(5)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Kết quả của đoạn code sau là gì?

for i in range(3):

    print(i, end=" ")

1 2 3

0 1 2

0 1 2 3

1 2 3 4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Vòng lặp while nào sau đây sẽ chạy vô hạn?

while True:

           print("Hello")

while 0:

    print("Hi")

while False:

    print("Hey")

while 1 == 0:

    print("Python")

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Đoạn code sau thực hiện chức năng gì?

i = 0

while i < 5:

    print(i)

    i += 1

In các số từ 1 đến 5

In các số từ 0 đến 4

In số 5 lần số 0

Vòng lặp vô hạn

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Để thêm phần tử vào cuối danh sách my_list, ta dùng lệnh nào?

my_list.add(5)

my_list.push(5)

my_list.append(5)

my_list.insert_last(5)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Để nối hai chuỗi s1 = "Hello" và s2 = "World" thành "HelloWorld", ta viết:

s1 + s2

s1 . s2

add(s1, s2)

join(s1, s2)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Đoạn code sau là ví dụ của loại hàm nào?

def greet():

    print("Hello, world!")

Hàm trả về giá trị

Hàm không trả về giá trị

Hàm có tham số

Lỗi

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?