Files
freeCodeCamp/curriculum/challenges/english/21-a2-english-for-developers/learn-conversation-starters-in-the-break-room/657dc9004d076d55baf36323.md
T
2025-03-17 18:57:18 +00:00

131 lines
2.5 KiB
Markdown

---
id: 657dc9004d076d55baf36323
title: Task 106
challengeType: 19
dashedName: task-106
---
<!-- (audio) Tom: Does this include brainstorming sessions?
Sophie: Occasionally, yeah. It depends on the project's needs. -->
# --description--
Remember, `occasionally` means something happens sometimes, but not regularly or often. It's less frequent than `sometimes` and more frequent than `rarely`.
Here is the adverb frequency chart from the last challenge, for your convenience.
| Adverb | Frequency | Adverb | Frequency |
| ------------ | --------- | --------- | --------- |
| Never | 0% | Often | 70% |
| Rarely | 5% | Generally | 80% |
| Seldom | 15% | Usually | 90% |
| Occasionally | 30% | Always | 100% |
| Sometimes | 50% | | |
# --questions--
## --text--
How often do brainstorming sessions happen according to Sophie?
## --answers--
At every meeting.
### --feedback--
If it happened every meeting, Sophie would use `always,` not `occasionally`.
---
Now and then.
---
Almost never.
### --feedback--
`Occasionally` is more frequent than `almost never`.
---
After every project.
### --feedback--
`After every project` would be too frequent to match `occasionally`.
## --video-solution--
2
# --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": 49.2,
"finishTimestamp": 54.56
}
},
"commands": [
{
"character": "Tom",
"opacity": 1,
"startTime": 0
},
{
"character": "Tom",
"startTime": 1,
"finishTime": 3.04,
"dialogue": {
"text": "Does this include brainstorming sessions?",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 3.1
},
{
"character": "Sophie",
"opacity": 1,
"startTime": 3.1
},
{
"character": "Sophie",
"startTime": 3.1,
"finishTime": 6.36,
"dialogue": {
"text": "Occasionally, yeah. It depends on the project's needs.",
"align": "center"
}
},
{
"character": "Sophie",
"opacity": 0,
"startTime": 6.86
}
]
}
```