From 891352e91f113a29e9603c85ac7b866fe2e84ecb Mon Sep 17 00:00:00 2001 From: Michael Elliot Braun Date: Mon, 28 Mar 2016 16:35:38 -0700 Subject: [PATCH] ANSWERING quiz update --- docs/lessons/answering-machine/quiz-answers.md | 12 +++++++++--- docs/lessons/answering-machine/quiz.md | 14 ++++++++++---- 2 files changed, 19 insertions(+), 7 deletions(-) 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") + +```