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>
96 lines
1.7 KiB
Markdown
96 lines
1.7 KiB
Markdown
---
|
|
id: 657dc50830f9be380105f1ee
|
|
title: Task 97
|
|
challengeType: 19
|
|
dashedName: task-97
|
|
---
|
|
|
|
# --description--
|
|
|
|
In English, the verb `know` is conjugated to `knows` when the subject is singular and in third person.
|
|
|
|
`Everyone` refers to a group but it is treated as a singular noun, that's why in English the correct form is `everyone knows`.
|
|
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
Why is the verb `know` used as `knows` after `everyone`?
|
|
|
|
## --answers--
|
|
|
|
Because `everyone` is considered a plural noun.
|
|
|
|
### --feedback--
|
|
|
|
`Everyone` sounds plural but grammatically functions as a singular noun.
|
|
|
|
---
|
|
|
|
Because `everyone` is considered a singular noun.
|
|
|
|
---
|
|
|
|
Because the subject of the sentence is plural.
|
|
|
|
### --feedback--
|
|
|
|
Even though `team members` is plural, `everyone` is the subject here.
|
|
|
|
---
|
|
|
|
Because it is referring to team members in the past tense.
|
|
|
|
### --feedback--
|
|
|
|
The tense of the verb is present, not past, as indicated by the context of the sentence.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Sophie",
|
|
"position": {"x":50,"y":0,"z":1.4},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-4.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 36.06,
|
|
"finishTimestamp": 39.78
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"startTime": 1,
|
|
"finishTime": 4.72,
|
|
"dialogue": {
|
|
"text": "All the team members have a chance to speak, so everyone knows what the others are doing.",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Sophie",
|
|
"opacity": 0,
|
|
"startTime": 5.22
|
|
}
|
|
]
|
|
}
|
|
```
|