Back to Freecodecamp

Task 32

curriculum/challenges/english/blocks/learn-how-to-talk-about-a-typical-workday-and-tasks/657e28253d33dedb2cbb5517.md

latest2.0 KB
Original Source
<!-- (audio) Tom: Sounds good. What do I do after checking emails? Anna: After that, you'll probably attend the daily team meeting at 9:30. -->

--description--

Time expressions are crucial for scheduling in a professional setting because they show exactly when something happens.

The preposition at is used with clock times. For example, at 9:30, at 5 p.m., or at midnight.

--questions--

--text--

What time is the daily team meeting according to Anna?

--answers--

At 8:00.

--feedback--

This is earlier than the time mentioned.


At 9:00.

--feedback--

The meeting is scheduled after they start work.


At 9:30.


At 10:00.

--feedback--

This is later than the actual meeting time mentioned.

--video-solution--

3

--scene--

json
{
  "setup": {
    "background": "interview-room3.png",
    "characters": [
      {
        "character": "Tom",
        "position": {"x":50,"y":15,"z":1.2},
        "opacity": 0
      },
      {
        "character": "Anna",
        "position": {"x":50,"y":15,"z":1.2},
        "opacity": 0
      }      
    ],
    "audio": {
      "filename": "2.1-2.mp3",
      "startTime": 1,
      "startTimestamp": 9.75,
      "finishTimestamp": 16.04
    }
  },
  "commands": [
    {
      "character": "Tom",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Tom",
      "startTime": 1,
      "finishTime": 3.44,
      "dialogue": {
        "text": "Sounds good. What do I do after checking emails?",
        "align": "center"
      }
    },
    {
      "character": "Tom",
      "opacity": 0,
      "startTime": 3.44
    },
    {
      "character": "Anna",
      "opacity": 1,
      "startTime": 3.44
    },
    {
      "character": "Anna",
      "startTime": 4.28,
      "finishTime": 7.24,
      "dialogue": {
        "text": "After that, you'll probably attend the daily team meeting at 9:30.",
        "align": "center"
      }
    },
    {
      "character": "Anna",
      "opacity": 0,
      "startTime": 7.74
    }
  ]
}