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>
93 lines
1.9 KiB
Markdown
93 lines
1.9 KiB
Markdown
---
|
|
id: 657cd0e53b947df11ce91026
|
|
title: Task 54
|
|
challengeType: 19
|
|
dashedName: task-54
|
|
---
|
|
|
|
# --description--
|
|
|
|
You use phrases like `in her position` to connect someone's qualities to their job or role. When Tom talks about `great traits for someone in her position`, he means that Maria's qualities are perfect for the responsibilities and tasks she has as a team lead.
|
|
|
|
# --questions--
|
|
|
|
## --text--
|
|
|
|
Which sentence shows that certain qualities are perfect for the job someone is doing?
|
|
|
|
## --answers--
|
|
|
|
Great traits are important for everybody.
|
|
|
|
### --feedback--
|
|
|
|
This option says that good qualities are important but doesn't link them to a specific job or role.
|
|
|
|
---
|
|
|
|
She has traits in her position.
|
|
|
|
### --feedback--
|
|
|
|
This option mentions traits and position but doesn't clearly connect the quality of the traits to the suitability for the position.
|
|
|
|
---
|
|
|
|
Those traits are useful for the work.
|
|
|
|
### --feedback--
|
|
|
|
While this option talks about traits being useful, it doesn't specifically say that the traits are excellent for the person's job or role.
|
|
|
|
---
|
|
|
|
Those are great traits for someone in her position.
|
|
|
|
## --video-solution--
|
|
|
|
4
|
|
|
|
# --scene--
|
|
|
|
```json
|
|
{
|
|
"setup": {
|
|
"background": "company2-center.png",
|
|
"characters": [
|
|
{
|
|
"character": "Tom",
|
|
"position": {"x":50,"y":15,"z":1.2},
|
|
"opacity": 0
|
|
}
|
|
],
|
|
"audio": {
|
|
"filename": "1.3-3.mp3",
|
|
"startTime": 1,
|
|
"startTimestamp": 12.30,
|
|
"finishTimestamp": 16.88
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 1,
|
|
"startTime": 0
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"startTime": 1,
|
|
"finishTime": 5.58,
|
|
"dialogue": {
|
|
"text": "Those are great traits for someone in her position, I think. What does she do as the team lead?",
|
|
"align": "center"
|
|
}
|
|
},
|
|
{
|
|
"character": "Tom",
|
|
"opacity": 0,
|
|
"startTime": 6.08
|
|
}
|
|
]
|
|
}
|
|
```
|