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

97 lines
1.4 KiB
Markdown

---
id: 657dc45d37cb4a32eae1fd7a
title: Task 95
challengeType: 19
dashedName: task-95
---
# --description--
Try to remember what you have learned about a certain preposition.
# --instructions--
Choose the standard preposition to complete the sentence about inclusion in a group.
# --questions--
## --text--
`Do the meetings involve everyone BLANK the team?`
## --answers--
`in`
### --feedback--
`In the team` is less commonly used and sounds less natural in this context.
---
`on`
---
`at`
### --feedback--
`At the team` is not grammatically correct for indicating membership.
---
`into`
### --feedback--
`Into the team` suggests movement or transition, not belonging.
## --video-solution--
2
# --scene--
```json
{
"setup": {
"background": "company2-center.png",
"characters": [
{
"character": "Tom",
"position": {"x":50,"y":15,"z":1.2},
"opacity": 0
}
],
"audio": {
"filename": "1.3-4.mp3",
"startTime": 1,
"startTimestamp": 30.64,
"finishTimestamp": 34.44
}
},
"commands": [
{
"character": "Tom",
"opacity": 1,
"startTime": 0
},
{
"character": "Tom",
"startTime": 1,
"finishTime": 4.80,
"dialogue": {
"text": "Good to know. Do the meetings involve everyone on the team?",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 5.30
}
]
}
```