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>
97 lines
1.9 KiB
Markdown
97 lines
1.9 KiB
Markdown
---
|
|
id: 657dc263516a5127ce677b8b
|
|
title: Task 91
|
|
challengeType: 19
|
|
dashedName: task-91
|
|
---
|
|
|
|
<!-- (audio)Sophie: Not too long. They usually take about 30 to 45 minutes. -->
|
|
|
|
# --description--
|
|
|
|
When talking about the duration of time something requires, you use the word `take.` For example, you can say, `It takes me 10 minutes to get to the subway.`
|
|
|
|
When expressing opinions about time, phrases like `too long` or `not too long` are used. `Too long` suggests that the time is more than what is preferred, while `not too long` suggests that the time is just right or reasonable.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What is Sophie's opinion about the length of the meetings?
|
|
|
|
## --answers--
|
|
|
|
They are too long.
|
|
|
|
### --feedback--
|
|
|
|
Sophie indicates that the duration of the meetings is reasonable, not excessive.
|
|
|
|
---
|
|
|
|
They are not too long.
|
|
|
|
---
|
|
|
|
They are shorter than necessary.
|
|
|
|
### --feedback--
|
|
|
|
There's no mention of the meetings being shorter than necessary, only that they don't last too long.
|
|
|
|
---
|
|
|
|
They are exactly 45 minutes.
|
|
|
|
### --feedback--
|
|
|
|
Sophie gives a range of time, not an exact duration, for the meetings.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-4.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 19.86,
|
|
"finishTimestamp": 22.72
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.86,
|
|
"dialogue": {
|
|
"text": "Not too long. They usually take about 30 to 45 minutes.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.36
|
|
}
|
|
]
|
|
}
|
|
```
|