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

100 lines
2.0 KiB
Markdown

---
id: 657dbe6c256e75101aa95abb
title: Task 82
challengeType: 22
dashedName: task-82
---
<!-- (audio) Tom: Tell me about our team meetings, Sophie. Do they happen every week?
Sophie: Yes, they do. We have meetings on Monday mornings. -->
# --description--
To confirm information, especially in answers to yes/no questions, we often use the auxiliary verb `do` for emphasis. It reinforces that something is indeed true.
# --instructions--
Listen to the audio to complete the sentence below.
# --fillInTheBlank--
## --sentence--
`Yes, they BLANK. We have meetings on Monday mornings.`
## --blanks--
`do`
### --feedback--
Sophie is confirming Tom's question positively, so she repeats the auxiliary verb `do` used in Tom's question.
# --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": 0.0,
"finishTimestamp": 6.86
}
},
"commands": [
{
"character": "Tom",
"opacity": 1,
"startTime": 0
},
{
"character": "Tom",
"startTime": 1,
"finishTime": 4.7,
"dialogue": {
"text": "Tell me about our team meetings, Sophie. Do they happen every week?",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 4.8
},
{
"character": "Sophie",
"opacity": 1,
"startTime": 4.8
},
{
"character": "Sophie",
"startTime": 5.54,
"finishTime": 7.86,
"dialogue": {
"text": "Yes, they do. We have meetings on Monday mornings.",
"align": "center"
}
},
{
"character": "Sophie",
"opacity": 0,
"startTime": 8.36
}
]
}
```