NEW
Font size
Worksheetscoding
Total questions: 37
Worksheet time: 37mins
What is a Variable? / 什么是变量?
A delicious snack / 一种好吃的零食
A box to store data / 一个用来存数据的盒子
A Micro:bit button / Micro:bit 上的按钮
A type of computer game / 一种电脑游戏
Which variable name is correct? / 哪一个是正确的变量名字?
my age = 3
2age = 3
123 = 3
age = 3
How many basic data types did we learn? / 我们学了几种基本数据类型?
0
100
10
2
Which ones are the basic data types? / 哪两个是基本数据类型?
Text and Number / 文本和数字
Box and Bag / 盒子和袋子
Mouse and Keyboard / 鼠标和键盘
Apple and Banana / 苹果和香蕉
What happens here? / 这里会发生什么?
"123" + "123" = ?
0
246
"123123"
Error / 报错
What happens here? / 这里会发生什么?
123 + 123 = ?
246
0
123
"123123"
What is inside 'num'? / 'num' 里面是什么?
display
"num"
3
0
What is inside 'word'? / 'word' 里面是什么?
"B"
3
A
word
What will the Micro:bit show? / Micro:bit 会显示什么?
"True"
"False"
Nothing / 什么都没有
Error / 报错
What will appear? / 会出现什么?
(Hint: < means smaller than / 提示:< 意思是小于)
"True"
2
"False"
5
What will happen? / 会发生什么?
(Hint: > means bigger than / 提示:> 意思是大于)
If I press button A, what shows up? / 如果我按下按钮 A,会显示什么?
What does '==' mean in Python? / 在 Python 里 '==' 是什么意思?
Is equal / 等于
Is smaller than / 比...小
Is bigger than / 比...大
error
What is a List in Python? / 什么是 Python 里的列表?
A single number / 一个单独的数字
A button / 一个按钮
Like a train holding many things / 就像一列装着很多东西的火车
A TV screen / 一个电视屏幕
Which symbol do we use to make a List? / 我们用什么符号来制作列表?
(Hashtag / 井号)
" " (Quotes / 引号)
( ) (Parentheses / 圆括号)
[ ] (Square Brackets / 方括号)
Is this code correct? / 这段代码正确吗?
True
False
Only numbers allowed / 只允许数字
Only text allowed / 只允许文本
What is letter? / 这个列表里有什么?
.
Nothing / 什么都没有
4 letters: a, b, c, d / 4个字母:a, b, c, d
Numbers 1, 2, 3, 4 / 数字 1, 2, 3, 4
1 big word "abcd" / 一个大单词 "abcd"
How many items are in this list? / 这个列表里有几样东西?
10
3
2
15
What is a 'For Loop'? / 什么是 'For Loop'?
Repeat forever / 永远重复
Stop everything / 停止一切
Repeat a specific number of times / 重复固定的次数
Do it only once / 只做一次
What is a 'While Loop' (like while True)? / 什么是 'While Loop'(比如 while True)?
Sleep mode / 睡眠模式
Infinite repeat / 无限重复
Repeat 3 times / 重复3次
Do nothing / 什么都不做
How many times will this code repeat? / 这段代码会重复几次?
10 times / 10次
9 times / 9次
100 times / 100次
0 times / 0次
What numbers will 'i' show? / 'i' 会显示哪些数字?
10, 10, 10, 10...
1, 2, 3, 4, 5, 6, 7, 8, 9, 10
0 to 100
0, 1, 2, 3, 4, 5, 6, 7, 8, 9
What is 'i' in the loop? / 循环里的 'i' 是什么?
Image / 图像
A variable that counts for us / 一个帮我们计数的变量
Internet / 互联网
iPhone / 苹果手机
What shape do we use for Start and End? / 开始和结束用什么形状?
What shape is for Treatment (Action/Process)? / 处理(动作/过程)是用什么形状?
What shape is for Decision Judging? / 决定和判断是用什么形状?
What shows the Path and Direction? / 什么显示路径和方向?
What does pin.write_digital(1) do? / pin.write_digital(1) 是做什么的?
Sleep mode / 睡眠模式
Ask the pin a question / 问引脚一个问题
Read the pin / 读取引脚
Change current pin (Turn On) / 改变当前引脚(打开)
Which pins can handle touch? / 哪些引脚可以感应触摸?
Pin 0, 1, 2
The USB cable / USB 线
The buttons A and B / 按钮 A 和 B
Only Pin 0 / 只有 Pin 0
Digital means only two numbers. What are they? / Digital(数字信号)只有两个数字。它们是什么?
1 and 2
10 and 20
A and B
0 and 1
What does random.randint(1, 9) do? / random.randint(1, 9) 是做什么的?
Always choose 9 / 总是选 9
Always choose 1 / 总是选 1
Pick a random number between 1 and 9 / 随机选一个 1 到 9 之间的数字
Count to 9 / 数到 9
Logic and: When is (A and B) True? / 逻辑 and:什么时候 (A and B) 是真的?
It is never True / 永远不是真的
When only one is True / 当只有一个是真的
When BOTH A and B are True / 当 A 和 B 两个都是真的
When both are False / 当两个都是假的
Logic or: When is (A or B) True? / 逻辑 or:什么时候 (A or B) 是真的?
Only if both are True / 只有当两个都是真的
If at least ONE of them is True / 只要其中一个是真的
It means Minus / 意思是减法
Only if both are False / 只有当两个都是假的
Logic not: What is not True? / 逻辑 not:not True(非真)是什么?
Zero / 零
True / 真
Maybe / 也许
False / 假
