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>
95 lines
1.7 KiB
Markdown
95 lines
1.7 KiB
Markdown
---
|
|
id: 657cece074e011590731dee2
|
|
title: Task 71
|
|
challengeType: 19
|
|
dashedName: task-71
|
|
---
|
|
|
|
<!-- (audio) Sophie: `She schedules team meetings every Monday morning to plan the week ahead.` -->
|
|
|
|
# --description--
|
|
|
|
When you have meetings `to plan ahead,` it means you discuss and decide on things that will happen in the future. It helps everyone know what to do before things happen. Like saying, `We have a family meeting to plan our vacation.`
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
Why does Maria hold team meetings on Mondays according to Sophie?
|
|
|
|
## --answers--
|
|
|
|
To plan the past week.
|
|
|
|
### --feedback--
|
|
|
|
`To plan the past week` would be looking back, not planning for what is coming.
|
|
|
|
---
|
|
|
|
To plan a break.
|
|
|
|
### --feedback--
|
|
|
|
A meeting `to plan a break` is not about planning work.
|
|
|
|
---
|
|
|
|
To plan the work for the coming week.
|
|
|
|
---
|
|
|
|
To start work late on Mondays.
|
|
|
|
### --feedback--
|
|
|
|
Starting work late is not related to planning or meetings.
|
|
|
|
## --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-3.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 34.34,
|
|
"finishTimestamp": 37.42
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 4.08,
|
|
"dialogue": {
|
|
"text": "She schedules team meetings every Monday morning to plan the week ahead.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.58
|
|
}
|
|
]
|
|
}
|
|
```
|