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>
122 lines
2.2 KiB
Markdown
122 lines
2.2 KiB
Markdown
---
|
|
id: 657dca763bc23c5fc3398d95
|
|
title: Task 110
|
|
challengeType: 19
|
|
dashedName: task-110
|
|
---
|
|
|
|
<!-- (audio) Tom: I can't wait for the first meeting I'll attend.
|
|
Sophie: Probably next Monday. -->
|
|
|
|
# --description--
|
|
|
|
`Probably` is used when you think something is likely to happen, but you're not 100% sure.
|
|
|
|
For example, you could say: `The code will probably run without errors after the update`, because you believe that, but there's still a small chance of an issue.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
When does Sophie think Tom will attend his first meeting?
|
|
|
|
## --answers--
|
|
|
|
Definitely next Monday.
|
|
|
|
### --feedback--
|
|
|
|
Sophie says `probably`, which does not imply anything definite.
|
|
|
|
---
|
|
|
|
Maybe in two weeks.
|
|
|
|
### --feedback--
|
|
|
|
Sophie uses `probably`, which suggests a greater level of certainty than maybe.
|
|
|
|
---
|
|
|
|
Next Monday, most likely.
|
|
|
|
---
|
|
|
|
On Friday.
|
|
|
|
### --feedback--
|
|
|
|
Friday was not mentioned in the dialog. It has to do with another day of the week.
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": { "x": 50, "y": 15, "z": 1.2 },
|
|
"opacity": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"position": { "x": 50, "y": 0, "z": 1.4 },
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-4.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 55.22,
|
|
"finishTimestamp": 58.68
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 3.18,
|
|
"dialogue": {
|
|
"text": "I can't wait for the first meeting I'll attend.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 3.18
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 3.18
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 3.18,
|
|
"finishTime": 4.46,
|
|
"dialogue": {
|
|
"text": "Probably next Monday.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.96
|
|
}
|
|
]
|
|
}
|
|
```
|