diff --git a/docs/lessons/answering-machine/quiz-answers.md b/docs/lessons/answering-machine/quiz-answers.md index e59ac680..bc31bf8f 100644 --- a/docs/lessons/answering-machine/quiz-answers.md +++ b/docs/lessons/answering-machine/quiz-answers.md @@ -10,17 +10,23 @@ Answers may vary. This is a function that will show a string on the LED screen o ## 2. Draw which LED is ON after running this code -![](/static/mb/blocks/lessons/answering-machine-3.png) +```blocks +basic.showString("Y") + +``` ![](/static/mb/lessons/answering-machine-0.png) ## 3. Draw which LED is ON after running this code -![](/static/mb/blocks/lessons/answering-machine-4.png) + +```blocks +basic.showString("Hi") + +``` ![](/static/mb/lessons/answering-machine-1.png) -
## 4. If the rectangle below represents the micro:bit, write the code to display the letter "Z". diff --git a/docs/lessons/answering-machine/quiz.md b/docs/lessons/answering-machine/quiz.md index c19adc92..7b630d45 100644 --- a/docs/lessons/answering-machine/quiz.md +++ b/docs/lessons/answering-machine/quiz.md @@ -22,19 +22,25 @@ basic.showString("Y") ``` -![](/static/mb/blocks/lessons/answering-machine-3.png) - ![](/static/mb/empty-microbit.png) ## 3. Draw which LED is ON after running this code -![](/static/mb/blocks/lessons/answering-machine-4.png) + +```blocks +basic.showString("Hi") + +``` + ![](/static/mb/lessons/answering-machine-4.png) ## 4. If the rectangle below represents the micro:bit, write the code to display the letter "Z". -![](/static/mb/lessons/answering-machine-5.png) +```blocks +basic.showString("Z") + +```