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>
107 lines
2.2 KiB
Markdown
107 lines
2.2 KiB
Markdown
---
|
|
id: 657b6f641e5c3ab1afc6efc1
|
|
title: Task 26
|
|
challengeType: 22
|
|
dashedName: task-26
|
|
---
|
|
|
|
# --description--
|
|
|
|
Before you learned to ask questions using `do`, you can also use it to create negative sentences by combining `do` (for `I`, `you`, `we`, `they`) or `does` (for `he`, `she`, `it`) with the word `not` and placing it right before the main verb:
|
|
|
|
`I do not work everyday` - (Subject + `do` + `not` + main verb)
|
|
|
|
`It does not function` - (Subject + `does` + `not` + main verb)
|
|
|
|
Often, to be more practical people abbreviate `do not` to `don't` and `does not` to `doesn't`.
|
|
|
|
Just like with questions, when you use `don't`, the main verb that comes after it will always be in its base form, no matter who you're talking about.
|
|
|
|
# --instructions--
|
|
|
|
Listen to the audio to complete the sentence below.
|
|
|
|
# --fillInTheBlank--
|
|
|
|
## --sentence--
|
|
|
|
`That's cool! I like photography, but I BLANK BLANK of it as a hobby. I play the guitar in my free time.`
|
|
|
|
## --blanks--
|
|
|
|
`don't`
|
|
|
|
### --feedback--
|
|
|
|
She is talking about something she doesn't do.
|
|
|
|
---
|
|
|
|
`think`
|
|
|
|
### --feedback--
|
|
|
|
When after an auxiliary verb, the main verb is not conjugated.
|
|
|
|
# --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
|
|
}
|
|
]
|
|
}
|
|
```
|