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>
99 lines
1.9 KiB
Markdown
99 lines
1.9 KiB
Markdown
---
|
|
id: 657ce22e1bdf763280ae1e2b
|
|
title: Task 65
|
|
challengeType: 19
|
|
dashedName: task-65
|
|
---
|
|
|
|
<!-- (Audio) Tom: Where does she usually work from? -->
|
|
|
|
# --description--
|
|
|
|
In the sentence `Where does she usually work from?`, the word `where` asks for a place or location. `Does` is used as an auxiliary verb to form a question in the simple present tense, and `usually` is an adverb of frequency that indicates something that happens most of the time. Tom is asking for the regular place where Maria performs her work.
|
|
|
|
# --instructions--
|
|
|
|
Read the question below and choose the answer that best explains what information the question is seeking.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
`Where does she usually work from?`
|
|
|
|
## --answers--
|
|
|
|
What she likes to do.
|
|
|
|
### --feedback--
|
|
|
|
This option is incorrect because the question does not ask about preferences or likes, but about a location.
|
|
|
|
---
|
|
|
|
The time she works.
|
|
|
|
### --feedback--
|
|
|
|
This option is incorrect because the question does not concern the time of work, but the place.
|
|
|
|
---
|
|
|
|
Where she typically does her work.
|
|
|
|
---
|
|
|
|
Who she works with.
|
|
|
|
### --feedback--
|
|
|
|
This option is incorrect because the question is about a place, not about the people she works with.
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|
|
# --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": 24.78,
|
|
"finishTimestamp": 26.26
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 2.48,
|
|
"dialogue": {
|
|
"text": "Where does she usually work from?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 2.98
|
|
}
|
|
]
|
|
}
|
|
```
|