2016-03-26 00:47:20 +01:00
|
|
|
# headbands quiz
|
|
|
|
|
2016-04-02 01:22:47 +02:00
|
|
|
create a charades game with a collection of strings.
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
## Name
|
|
|
|
|
|
|
|
## Directions
|
|
|
|
|
2016-04-13 17:27:45 +02:00
|
|
|
Use this activity document to guide your work in the [headbands tutorial](/lessons/headbands/activity).
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
Answer the questions while completing the tutorial. Pay attention to the dialogues!
|
|
|
|
|
|
|
|
## 1. What is the meaning of the term 'collection' in programming? What is a 'collection' of strings?
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## 2. Write the line of code that will display the string "puppy" using "data->coll".
|
|
|
|
|
2016-03-31 02:01:28 +02:00
|
|
|
```blocks
|
|
|
|
let coll = (<string[]>[])
|
2016-03-26 00:47:20 +01:00
|
|
|
coll.push("puppy")
|
|
|
|
coll.push("clock")
|
|
|
|
```
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## 3. Write the line of code that will display the string "cat" using `"data->coll".
|
|
|
|
|
2016-03-31 02:01:28 +02:00
|
|
|
```blocks
|
|
|
|
let coll = (<string[]>[])
|
2016-03-26 00:47:20 +01:00
|
|
|
coll.push("puppy")
|
|
|
|
coll.push("clock")
|
|
|
|
coll.push("cat")
|
|
|
|
```
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## 4. Write the five (5) lines of code that will add the following five words to `data->coll`: puppy, clock, night, cat, cow.
|
|
|
|
|
|
|
|
```
|
2016-03-31 02:01:28 +02:00
|
|
|
let coll = (<string[]>[])
|
2016-03-26 00:47:20 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## 5. Write the code to get a string from the collection at a random position.
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|