Variables and basic data types in Python
Quiz by Phuong Do Thi
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
20 questions
Show answers
- Q1Cho s = 'Hello World!'. Câu lệnh nào sau đây in ra độ dài của chuỗi s?print(s.length())print(s.size)print(len(s))print(s.length)30s
- Q2
Cho x = 'Hello', y = 'World'.
'Hello World' là kết quả của câu lệnh nào dưới đây?
print(x + ' ' + y)print(x, y)print(x * y)print(x - y)30s - Q3Cho s = 'Hello'. Câu lệnh nào dưới đây có thể thực thi?print(s+3)print(s*3)print(s/3)print(s^3)30s
- Q4Cho x = '5'. Để có được số nguyên 5, câu lệnh nào dưới đây là đúng?str(x)int(x)float(x)30s
- Q5Cho pi = '3.14' và r = 5. Câu lệnh nào dưới đây cho biết chu vi của hình tròn?print(2 * str(x) * r)print(2 * int(x) * r)print(2 * float(x) * r)print(2 * x * r)30s
- Q6Cho x = '5 + 3'. Câu lệnh nào dưới đây cho kết quả là 8?print(eval(x))print(str(x))print(float(x))print(int(x))30s
- Q7Điều gì xảy ra khi thêm dấu # vào đầu dòng trong Python?Dòng đó sẽ bị xóa khỏi chương trình.Dòng đó sẽ bị lỗi cú pháp.Dòng đó sẽ trở thành một dòng chú thích và sẽ không được thực thi.Dòng đó sẽ thực thi bình thường.30s
- Q8Cho s = 'Python'. Kết quả của câu lệnh print(s[2:5]) là?'ytho''thon''tho''yth'30s
- Q9Khi chạy đoạn code sau, kết quả in ra là gì?12.512102.51330s
- Q10Cho x = '6'. Kết quả của câu lệnh print(x*3) là?'666'18'6*3'30s
- Q11
Index mặc định của chuỗi trong Python bắt đầu từ đâu?
1
0
-1
10
30s - Q12
Hãy nối kiểu dữ liệu tương ứng
Users link answersLinking60s - Q13
Đâu là tên biến hợp lệ trong Python?
sales 2023
if
2023#sales
int
sales_2023
and
30s - Q14
Trong Python, kiểu dữ liệu boolean có thể nhận bao nhiêu giá trị?
2
1
3
4
30s - Q15
Đoạn lệnh sau in ra kết quả gì?
The sum of {} and {} is {}
The sum of 5 and 3 is 8
The sum of x and y is 8
The sum of x and y is 5+3
30s