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: 657dc5b1c14b693ce0584837
|
|
title: Task 99
|
|
challengeType: 19
|
|
dashedName: task-99
|
|
---
|
|
|
|
<!-- (audio) Sophie: Absolutely! All the team members have a chance to speak, so everyone knows what the others are doing. -->
|
|
|
|
# --description--
|
|
|
|
Sophie responds affirmatively about the team meetings.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does Sophie confirm about the team members during the meetings?
|
|
|
|
## --answers--
|
|
|
|
Only some team members can speak.
|
|
|
|
### --feedback--
|
|
|
|
The word `all` means everyone is included, not just some people.
|
|
|
|
---
|
|
|
|
Team members must speak in a specific order.
|
|
|
|
### --feedback--
|
|
|
|
There's no mention of a specific speaking order in Sophie's response.
|
|
|
|
---
|
|
|
|
Speaking is restricted to senior team members only.
|
|
|
|
### --feedback--
|
|
|
|
Sophie doesn't say that only people with more experience can speak.
|
|
|
|
---
|
|
|
|
Every team member gets an opportunity to express themselves.
|
|
|
|
## --video-solution--
|
|
|
|
4
|
|
|
|
# --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": 35.04,
|
|
"finishTimestamp": 39.78
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 5.74,
|
|
"dialogue": {
|
|
"text": "Absolutely. All the team members have a chance to speak, so everyone knows what the others are doing.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 6.24
|
|
}
|
|
]
|
|
}
|
|
```
|