2016-03-25 16:47:20 -07:00
|
|
|
# answering machine blocks quiz
|
|
|
|
|
|
|
|
Create an answering machine on the micro:bit. #LED #screen #show #math #docs #input
|
|
|
|
|
|
|
|
## Name
|
|
|
|
|
|
|
|
## Directions
|
|
|
|
|
|
|
|
Use this activity document to guide your work in the [answering machine activity](/microbit/lessons/answering-machine/activity).
|
|
|
|
|
|
|
|
Answer the questions while completing the activity. Pay attention to the dialogues!
|
|
|
|
|
|
|
|
## 1. Define what `show string` does?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 2. Draw which LED is ON after running this code
|
|
|
|
|
2016-03-28 16:32:31 -07:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.showString("Y")
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2016-03-25 16:47:20 -07:00
|
|
|
![](/static/mb/empty-microbit.png)
|
|
|
|
|
|
|
|
|
|
|
|
## 3. Draw which LED is ON after running this code
|
|
|
|
|
2016-03-28 16:35:38 -07:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.showString("Hi")
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2016-03-25 16:47:20 -07:00
|
|
|
|
|
|
|
![](/static/mb/lessons/answering-machine-4.png)
|
|
|
|
|
|
|
|
## 4. If the rectangle below represents the micro:bit, write the code to display the letter "Z".
|
|
|
|
|
2016-03-28 16:35:38 -07:00
|
|
|
```blocks
|
|
|
|
basic.showString("Z")
|
|
|
|
|
|
|
|
```
|
2016-03-25 16:47:20 -07:00
|
|
|
|
|
|
|
|