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.7 KiB
Markdown
93 lines
1.7 KiB
Markdown
---
|
|
id: 657dc4c403f74135e0a8c7be
|
|
title: Task 96
|
|
challengeType: 19
|
|
dashedName: task-96
|
|
---
|
|
|
|
# --description--
|
|
|
|
The phrase `have a chance to speak` implies that everyone is given the opportunity to contribute to the conversation.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
What does it mean when `all the team members have a chance to speak`?
|
|
|
|
## --answers--
|
|
|
|
Everyone has the opportunity to express their thoughts.
|
|
|
|
---
|
|
|
|
Only certain members are allowed to talk.
|
|
|
|
### --feedback--
|
|
|
|
`Chance` here means the possibility for everyone, not just select individuals.
|
|
|
|
---
|
|
|
|
Team members can speak whenever they want, without order.
|
|
|
|
### --feedback--
|
|
|
|
While everyone has a chance, it is implied that there is an order in the context of a meeting.
|
|
|
|
---
|
|
|
|
No one is allowed to speak during the meeting.
|
|
|
|
### --feedback--
|
|
|
|
The statement clearly says that all members have the opportunity, so it cannot mean that no one can speak.
|
|
|
|
## --video-solution--
|
|
|
|
1
|
|
|
|
# --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": 37.84
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 3.80,
|
|
"dialogue": {
|
|
"text": "Absolutely. All the team members have a chance to speak",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 4.30
|
|
}
|
|
]
|
|
}
|
|
```
|