39 lines
823 B
Markdown
Raw Normal View History

2016-03-25 16:47:20 -07:00
# answering machine blocks quiz answers
2016-11-01 17:44:37 -07:00
Create an answering machine on the @boardname@.
2016-03-25 16:47:20 -07:00
2016-04-13 08:27:45 -07:00
This is the answer key for the [answering machine quiz](/lessons/answering-machine/quiz).
2016-03-25 16:47:20 -07:00
## 1. Define what `show string` does?
Answers may vary. This is a function that will show a string on the LED screen one character at a time (scrolling from left to right).
## 2. Draw which LED is ON after running this code
2016-03-28 16:35:38 -07:00
```blocks
basic.showString("Y")
```
2016-03-25 16:47:20 -07:00
![](/static/mb/lessons/answering-machine-0.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-1.png)
2016-11-01 17:44:37 -07:00
## 4. If the rectangle below represents the @boardname@, write the code to display the letter "Z".
2016-03-25 16:47:20 -07:00
![](/static/mb/lessons/answering-machine-2.png)
2016-03-29 13:17:00 -07:00
```blocks
basic.showString("Z")
```
2016-03-25 16:47:20 -07:00