Back to Freecodecamp

Task 40

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

latest1.7 KB
Original Source
<!-- AUDIO REFERENCE: Bob: Finally, this is Linda, our UX/UI designer. She joined the team last year. -->

--description--

Understanding time expressions helps in placing events correctly in time. For example:

Last year refers to the year before the current one. For example, if it is 2043 now, last year was 2042.

This year refers to the current year, 2043 in this example.

Next year will be the year after the current one, which would be 2044 in this case.

--questions--

--text--

When did Linda join the team?

--answers--

This year.

--feedback--

The expression last year refers to the year before the current one, not this year.


Next year.

--feedback--

Last year means the year before the current year.


Last year.


Five years ago.

--feedback--

Last year indicates a more recent time than five years ago.

--video-solution--

3

--scene--

json
{
  "setup": {
    "background": "company2-boardroom.png",
    "characters": [
      {
        "character": "Linda",
        "position": { "x": 50, "y": 0, "z": 1.4 },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "1.2-2.mp3",
      "startTime": 1,
      "startTimestamp": 27.18,
      "finishTimestamp": 32.24
    }
  },
  "commands": [
    {
      "character": "Linda",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Bob",
      "startTime": 1,
      "finishTime": 6.6,
      "dialogue": {
        "text": "Finally, this is Linda, our UX/UI designer. She joined the team last year.",
        "align": "center"
      }
    },
    {
      "character": "Linda",
      "opacity": 0,
      "startTime": 7.1
    }
  ]
}