file management quizzes
This commit is contained in:
38
docs/lessons/truth-or-dare/quiz-answers.md
Normal file
38
docs/lessons/truth-or-dare/quiz-answers.md
Normal file
@ -0,0 +1,38 @@
|
||||
# truth or dare quiz answers
|
||||
|
||||
a multi-player game that forces each player to reveal a secret or something funny #math #random #docs #shake
|
||||
|
||||
This is the answer key for the [truth or dare quiz](/microbit/lessons/truth-or-dare/quiz).
|
||||
|
||||
## 1. Write the code that will randomly return 0 through 3 and stores the value inside a local variable called 'random'.
|
||||
|
||||
```
|
||||
let random = Math.random(4)
|
||||
```
|
||||
|
||||
## 2. Write an if statement that will display the message "TRUTH" on the BBC micro:bit if the local variable 'random' equals 0.
|
||||
|
||||
```
|
||||
if (random == 0) {
|
||||
basic.showString("TRUTH", 150)
|
||||
}
|
||||
```
|
||||
|
||||
## 3. If the local variable 'random' equals 1, write the string that will be displayed.
|
||||
|
||||
DARE
|
||||
|
||||
## 4.Write the code that will display this up arrow after pressing button "A".
|
||||
|
||||

|
||||
|
||||
```
|
||||
basic.plotImage(`
|
||||
. . # . .
|
||||
. # # # .
|
||||
# # # # #
|
||||
. . # . .
|
||||
. . # . .
|
||||
`)
|
||||
```
|
||||
|
Reference in New Issue
Block a user