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>
93 lines
1.6 KiB
Markdown
93 lines
1.6 KiB
Markdown
---
|
|
id: 657dc40e8ceee1310ef482d1
|
|
title: Task 94
|
|
challengeType: 19
|
|
dashedName: task-94
|
|
---
|
|
|
|
# --description--
|
|
|
|
`To prepare in advance` means to get something ready before the time it is needed. This helps meetings to go smoothly because everyone knows what will be discussed.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does `Maria prepares the agenda in advance` mean?
|
|
|
|
## --answers--
|
|
|
|
Maria makes the agenda during the meeting.
|
|
|
|
### --feedback--
|
|
|
|
`In advance` means to do something ahead of time, not during.
|
|
|
|
---
|
|
|
|
Maria thinks about the agenda but doesn't write it down.
|
|
|
|
### --feedback--
|
|
|
|
`Prepares` means to actually create or put together, not just think about.
|
|
|
|
---
|
|
|
|
Maria gets the agenda ready before the meeting happens.
|
|
|
|
---
|
|
|
|
Maria forgets to make the agenda.
|
|
|
|
### --feedback--
|
|
|
|
Preparing in advance is the opposite of forgetting; it shows Maria is responsible.
|
|
|
|
## --video-solution--
|
|
|
|
3
|
|
|
|
# --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": 28.18,
|
|
"finishTimestamp": 30.48
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.30,
|
|
"dialogue": {
|
|
"text": "Maria prepares the agenda in advance.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 3.80
|
|
}
|
|
]
|
|
}
|
|
```
|