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

130 lines
2.5 KiB
Markdown

---
id: 657b7e633c982f095101e6fe
title: Task 36
challengeType: 19
dashedName: task-36
---
<!-- (audio) Tom: Wow! Electric or acoustic?
Sophie: Electric, for sure! Back to your hobbies, though, do you have any favorite photography theme? -->
# --description--
Sometimes you want to talk about what you or someone else enjoys. For example, if your friend enjoys reading, you can say, `My friend likes reading.`
# --questions--
## --text--
Which sentence is correct about Sophie's guitar preference?
## --answers--
`Sophie likes electric guitar.`
---
`Sophie like electric guitar.`
### --feedback--
In English, when we refer to `he,` `she,` or `it,` we need to add an `s` to the verb, making it `likes.` For example, if your friend enjoys reading, you would say, `She likes reading.`
---
`Sophie does likes electric guitar.`
### --feedback--
`Does likes` is incorrect; `does` should not be used together with `likes.`
---
`Sophie liked electric guitar.`
### --feedback--
`Liked` is past tense, but we are discussing her current preference.
## --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": 15.40,
"finishTimestamp": 22.72
}
},
"commands": [
{
"character": "Tom",
"opacity": 1,
"startTime": 0
},
{
"character": "Tom",
"startTime": 1,
"finishTime": 3.38,
"dialogue": {
"text": "Wow. Electric or acoustic?",
"align": "center"
}
},
{
"character": "Tom",
"opacity": 0,
"startTime": 3.39
},
{
"character": "Sophie",
"opacity": 1,
"startTime": 3.39
},
{
"character": "Sophie",
"startTime": 3.94,
"finishTime": 6.5,
"dialogue": {
"text": "Electric, for sure. Back to your hobbies, though.",
"align": "center"
}
},
{
"character": "Sophie",
"startTime": 6.5,
"finishTime": 8.32,
"dialogue": {
"text": "Do you have any favorite photography themes?",
"align": "center"
}
},
{
"character": "Sophie",
"opacity": 0,
"startTime": 8.82
}
]
}
```