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

122 lines
2.3 KiB
Markdown

---
id: 657b8278a00d27196af26c6c
title: Task 37
challengeType: 19
dashedName: task-37
---
<!-- (audio) Sophie: Electric, for sure! Back to your hobbies, though, do you have any favorite photography theme?
Tom: I like landscapes and street photography, mostly. -->
# --description--
When elaborating questions about a third person singular (he, she or it) you might need to use the auxiliary verb `does` .
For example: If Alice is curious about Sophie's hobbies and wants to ask Tom, she can say, `Does Sophie like hiking?` The word `does` is used here because the subject is `Sophie,` a third person singular. `Does` is used to form questions in the present simple tense for he, she, or it.
# --questions--
## --text--
Does Tom have a favorite photography theme?
## --answers--
Yes, he does.
---
No, he doesn't.
### --feedback--
The dialogue indicates Tom does have favorite themes.
---
Yes, he do.
### --feedback--
`Yes, he do` is incorrect; it should be `Yes, he does.`
---
No, does he?
### --feedback--
`No, does he?` is not a statement but a question, and it implies doubt or surprise, not affirmation.
## --video-solution--
1
# --scene--
```json
{
"setup": {
"background": "company2-breakroom.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-2.mp3",
"startTime": 1,
"startTimestamp": 20.90,
"finishTimestamp": 26.14
}
},
"commands": [
{
"character": "Sophie",
"opacity": 1,
"startTime": 0
},
{
"character": "Sophie",
"startTime": 1,
"finishTime": 2.82,
"dialogue": {
"text": "Do you have any favorite photography themes?",
"align": "center"
}
},
{
"character": "Sophie",
"opacity": 0,
"startTime": 2.9
},
{
"character": "Tom",
"opacity": 1,
"startTime": 3
},
{
"character": "Tom",
"startTime": 3.62,
"finishTime": 6.24,
"dialogue": {
"text": "I like landscapes and street photography, mostly.",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 6.74
}
]
}
```