mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
905e7d5a5c
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: DanielRosa74 <58576743+DanielRosa74@users.noreply.github.com>
124 lines
2.9 KiB
Markdown
124 lines
2.9 KiB
Markdown
---
|
||
id: 657b718282cd56bb91a795de
|
||
title: Task 29
|
||
challengeType: 19
|
||
dashedName: task-29
|
||
---
|
||
|
||
<!-- (audio) Sophie: That's cool! I like it, but I don't think of it as a hobby. I play the guitar in my free time. -->
|
||
|
||
# --description--
|
||
|
||
In English, some verbs are conjugated. This means they change the form according to the person you are talking about. For most verbs, when we talk about another person like `he,` `she,` or `it,` we add an `-s` or `-es` to the verb.
|
||
|
||
For example: If you talk about Tom and photography you can say: `Tom takes photographs,` not `Tom take photographs.` This is how you show in your sentence that the action is done by Tom in the present tense.
|
||
|
||
For negative sentences, you can use `doesn't` followed by the base form of the verb.
|
||
|
||
You do not add `-s` or `-es.` because `does` is already conjugated (`do+es`).
|
||
|
||
For example, if Tom doesn't do video recording as a hobby, you can say, `He doesn't record videos.`.
|
||
|
||
Understanding this difference is crucial for talking about habits and actions accurately. Now, let's apply this understanding to what Sophie does in her free time.
|
||
|
||
|
||
# --questions--
|
||
|
||
## --text--
|
||
|
||
Listen to what Sophie says about playing the guitar and pick the statement that is correct.
|
||
|
||
## --answers--
|
||
|
||
`Does Sophie play the guitar?`
|
||
|
||
### --feedback--
|
||
|
||
This is a question, not a statement. You need to find the statement that correctly describes when Sophie plays the guitar.
|
||
|
||
---
|
||
|
||
`Sophie doesn't play the guitar.`
|
||
|
||
### --feedback--
|
||
|
||
This statement is negative. Does Sophie say she doesn't play the guitar, or is this not true?
|
||
|
||
---
|
||
|
||
`Sophie play guitar in her free time.`
|
||
|
||
### --feedback--
|
||
|
||
This sentence is missing the third person `s` at the end of `plays.` Remember the rule for verbs in the third person singular form.
|
||
|
||
---
|
||
|
||
`Sophie plays the guitar in her free time.`
|
||
|
||
## --video-solution--
|
||
|
||
4
|
||
|
||
# --scene--
|
||
|
||
```json
|
||
{
|
||
"setup": {
|
||
"background": "company2-breakroom.png",
|
||
"characters": [
|
||
{
|
||
"character": "Sophie",
|
||
"position": {"x":50,"y":0,"z":1.4},
|
||
"opacity": 0
|
||
}
|
||
],
|
||
"audio": {
|
||
"filename": "1.3-2.mp3",
|
||
"startTime": 1,
|
||
"startTimestamp": 10.50,
|
||
"finishTimestamp": 15.40
|
||
}
|
||
},
|
||
"commands": [
|
||
{
|
||
"character": "Sophie",
|
||
"opacity": 1,
|
||
"startTime": 0
|
||
},
|
||
{
|
||
"character": "Sophie",
|
||
"startTime": 1,
|
||
"finishTime": 1.56,
|
||
"dialogue": {
|
||
"text": "That's cool.",
|
||
"align": "center"
|
||
}
|
||
},
|
||
{
|
||
"character": "Sophie",
|
||
"startTime": 1.72,
|
||
"finishTime": 3.94,
|
||
"dialogue": {
|
||
"text": "I like photography, but I don't think of it as a hobby.",
|
||
"align": "center"
|
||
}
|
||
},
|
||
{
|
||
"character": "Sophie",
|
||
"startTime": 4.22,
|
||
"finishTime": 5.90,
|
||
"dialogue": {
|
||
"text": "I play the guitar in my free time.",
|
||
"align": "center"
|
||
}
|
||
},
|
||
{
|
||
"character": "Sophie",
|
||
"opacity": 0,
|
||
"startTime": 6.40
|
||
}
|
||
]
|
||
}
|
||
```
|