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

93 lines
1.4 KiB
Markdown

---
id: 657dbd1ebf21b2096966fe0d
title: Task 80
challengeType: 19
dashedName: task-80
---
# --description--
Remember, the auxiliary verb `do` is used to form questions in the present simple tense.
# --questions--
## --text--
Which question is asking about the regular occurrence of team meetings?
## --answers--
`Meetings happen every week?`
### --feedback--
This is a statement, not a question.
---
`Happen meetings every week?`
### --feedback--
The order of words is not correct for a question in English.
---
`Do meetings happen every week?`
---
`Does meetings every week?`
### --feedback--
`Does` is used with `he`, `she`, or `it`, not `they.`
## --video-solution--
3
# --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": 0.00,
"finishTimestamp": 3.70
}
},
"commands": [
{
"character": "Tom",
"opacity": 1,
"startTime": 0
},
{
"character": "Tom",
"startTime": 1,
"finishTime": 4.70,
"dialogue": {
"text": "Tell me about our team meetings, Sophie. Do they happen every week?",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 5.20
}
]
}
```