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>
117 lines
1.9 KiB
Markdown
117 lines
1.9 KiB
Markdown
---
|
|
id: 657dc1d18a0a6f25302badba
|
|
title: Task 90
|
|
challengeType: 19
|
|
dashedName: task-90
|
|
---
|
|
|
|
# --description--
|
|
|
|
The word `reasonable` means something is fair, makes sense, or is acceptable in a certain situation. For example, `The price of the ticket is reasonable` means the price is not too high and feels fair.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does `that's reasonable` mean?
|
|
|
|
## --answers--
|
|
|
|
Too late
|
|
|
|
### --feedback--
|
|
|
|
`Reasonable` is not about being too late; it means just right or enough.
|
|
|
|
---
|
|
|
|
Fair and acceptable
|
|
|
|
---
|
|
|
|
Too long
|
|
|
|
### --feedback--
|
|
|
|
If something is `reasonable`, it's not too much. It is a good amount.
|
|
|
|
---
|
|
|
|
Unplanned
|
|
|
|
### --feedback--
|
|
|
|
`Reasonable` is about being fair, not about planning.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-4.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 20.62,
|
|
"finishTimestamp": 24.00
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.3,
|
|
"dialogue": {
|
|
"text": "They usually take about 30 to 45 minutes.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 3.3
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 3.3
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 3.5,
|
|
"finishTime": 4.38,
|
|
"dialogue": {
|
|
"text": "That's reasonable.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 4.88
|
|
}
|
|
]
|
|
}
|
|
```
|