Back to Freecodecamp

Task 110

curriculum/challenges/english/blocks/learn-conversation-starters-in-the-break-room/657dca763bc23c5fc3398d95.md

latest2.1 KB
Original Source
<!-- (audio) Tom: I can't wait for the first meeting I'll attend. Sophie: Probably next Monday. -->

--description--

Probably is used when you think something is likely to happen, but you're not 100% sure.

For example, you could say: The code will probably run without errors after the update, because you believe that, but there's still a small chance of an issue.

--questions--

--text--

When does Sophie think Tom will attend his first meeting?

--answers--

Definitely next Monday.

--feedback--

Sophie says probably, which does not imply anything definite.


Maybe in two weeks.

--feedback--

Sophie uses probably, which suggests a greater level of certainty than maybe.


Next Monday, most likely.


On Friday.

--feedback--

Friday was not mentioned in the dialogue. It has to do with another day of the week.

--video-solution--

3

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Tom",
        "position": { "x": 50, "y": 15, "z": 1.2 },
        "opacity": 0
      },
      {
        "character": "Sophie",
        "position": { "x": 50, "y": 0, "z": 1.4 },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "1.3-4.mp3",
      "startTime": 1,
      "startTimestamp": 55.22,
      "finishTimestamp": 58.68
    }
  },
  "commands": [
    {
      "character": "Tom",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Tom",
      "startTime": 1,
      "finishTime": 3.18,
      "dialogue": {
        "text": "I can't wait for the first meeting I'll attend.",
        "align": "center"
      }
    },
    {
      "character": "Tom",
      "opacity": 0,
      "startTime": 3.18
    },
    {
      "character": "Sophie",
      "opacity": 1,
      "startTime": 3.18
    },
    {
      "character": "Sophie",
      "startTime": 3.18,
      "finishTime": 4.46,
      "dialogue": {
        "text": "Probably next Monday.",
        "align": "center"
      }
    },
    {
      "character": "Sophie",
      "opacity": 0,
      "startTime": 4.96
    }
  ]
}