Back to Freecodecamp

Task 2

curriculum/challenges/english/blocks/learn-introductions-in-an-online-team-meeting/657b236691c67b197cd382f4.md

latest1.6 KB
Original Source
<!-- AUDIO REFERENCE: Alice: Hi, everyone. My name is Alice, and I'm happy to be part of the team. -->

--description--

You use pronouns to avoid repeating names or nouns.

In the sentence, My name is Alice, and I'm happy to be part of the team, the word I is a pronoun that takes the place of the name Alice. Pronouns help make sentences shorter and easier to understand.

--questions--

--text--

In Alice's introduction, which pronoun does she use to refer to herself?

--answers--

You

--feedback--

You is used to refer to the person being spoken to, not the speaker.


He

--feedback--

He is a pronoun used to refer to a male individual, not the speaker if they are female.


She

--feedback--

She is used to refer to another female individual, not the speaker herself.


I

--video-solution--

4

--scene--

json
{
  "setup": {
    "background": "company2-boardroom.png",
    "characters": [
      {
        "character": "Alice",
        "position": {"x":50,"y":0,"z":1.4},
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "1.2-1.mp3",
      "startTime": 1,
      "startTimestamp": 0.00,
      "finishTimestamp": 3.82
    }
  },
  "commands": [
    {
      "character": "Alice",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Alice",
      "startTime": 1,
      "finishTime": 4.82,
      "dialogue": {
        "text": "Hi, everyone. My name is Alice, and I'm happy to be part of the team.",
        "align": "center"
      }
    },
    {
      "character": "Alice",
      "opacity": 0,
      "startTime": 5.32
    }
  ]
}