Back to Freecodecamp

Task 99

curriculum/challenges/english/blocks/learn-greetings-in-your-first-day-at-the-office/656cc5d403162710a3fae634.md

latest1.9 KB
Original Source
<!-- AUDIO REFERENCE: Tom: Wow, I'm so hungry. Is it lunchtime? Sophie: Yes, it is. -->

--description--

If a person asks you a direct question using is it — for example, Is it true? — you can reply to this question with these short answers:

  • Yes, it is. for affirmative.

  • No, it is not. or No, it isn't. for negative.

--questions--

--text--

Which option below gives a correct positive answer to the question in the dialogue?

--answers--

No, it isn't.

--feedback--

This is the negative form, not affirmative.


Yes, it are.

--feedback--

This is grammatically incorrect.


Yes, it is.


No, is it.

--feedback--

This is a question form, not a positive answer.

--video-solution--

3

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Tom",
        "position": { "x": 25, "y": 15, "z": 1.2 },
        "opacity": 0
      },
      {
        "character": "Sophie",
        "position": { "x": 75, "y": 0, "z": 1.25 },
        "opacity": 0
      }

    ],
    "audio": {
      "filename": "1.1-3.mp3",
      "startTime": 1,
      "startTimestamp": 0,
      "finishTimestamp": 5.1
    }
  },
  "commands": [
    {
      "character": "Tom",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Sophie",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Tom",
      "startTime": 1,
      "finishTime": 3.9,
      "dialogue": {
        "text": "Wow, I'm so hungry. Is it lunchtime?",
        "align": "left"
      }
    },
        {
      "character": "Sophie",
      "startTime": 4.4,
      "finishTime": 5.5,
      "dialogue": {
        "text": "Yes, it is.",
        "align": "right"
      }
    },
    {
      "character": "Tom",
      "opacity": 0,
      "startTime": 6
    },
    {
      "character": "Sophie",
      "opacity": 0,
      "startTime": 6
    }
  ]
}