Files
freeCodeCamp/curriculum/challenges/english/21-a2-english-for-developers/learn-conversation-starters-in-the-break-room/657dc1d18a0a6f25302badba.md
T
2025-03-17 18:57:18 +00:00

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
}
]
}
```