mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
905e7d5a5c
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: DanielRosa74 <58576743+DanielRosa74@users.noreply.github.com>
75 lines
1.4 KiB
Markdown
75 lines
1.4 KiB
Markdown
---
|
|
id: 657cea90396c694e4fdcaeba
|
|
title: Task 67
|
|
challengeType: 22
|
|
dashedName: task-67
|
|
---
|
|
|
|
<!-- (audio) Tom: `When does she often hold team meetings?` -->
|
|
|
|
# --description--
|
|
|
|
You use `when` to ask about the time or date something happens. It's like asking, `When is your birthday?` or `When do we have lunch?`
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`BLANK does she often hold team meetings?`
|
|
|
|
## --blanks--
|
|
|
|
`When`
|
|
|
|
### --feedback--
|
|
|
|
The word you need is a question word that asks about time. It's used at the beginning of a question when you want to know the time something happens.
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-3.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 30.78,
|
|
"finishTimestamp": 33.62
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.84,
|
|
"dialogue": {
|
|
"text": "I see. When does she usually hold team meetings?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 4.34
|
|
}
|
|
]
|
|
}
|
|
```
|