Back to Freecodecamp

Task 19

curriculum/challenges/english/blocks/learn-how-to-clarify-misunderstandings/67e6b1552cfa9d32b50a6c68.md

latest2.1 KB
Original Source
<!-- (Audio) Mark: Does that mean breaking code into smaller parts, like encapsulating it? -->

--instructions--

Listen to the audio and complete the sentence below.

--fillInTheBlank--

--sentence--

Does that mean BLANK code BLANK smaller parts, like BLANK it?

--blanks--

breaking

--feedback--

This verb means to divide something into smaller pieces or parts. It ends with -ing.


into

--feedback--

This preposition indicates the direction or result of dividing something.


encapsulating

--feedback--

This refers to grouping related things into a single unit or structure and hiding unnecessary details. It ends with -ing.

--explanation--

Breaking into means dividing or splitting something as smaller parts. For example:

We are breaking the project into smaller tasks. - This means dividing the project into manageable pieces.

Encapsulating refers to wrapping something (like data or functionality) into a single unit or structure, keeping the details hidden and only exposing what's necessary. For example:

Encapsulating the data in an object means users can only access the data through specific methods, not directly. - This ensures that the data is controlled and safe from unintended changes or misuse.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Mark",
        "position": {
          "x": 50,
          "y": 0,
          "z": 1.4
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "B1_16-1.mp3",
      "startTime": 1,
      "startTimestamp": 33.36,
      "finishTimestamp": 37.42
    }
  },
  "commands": [
    {
      "character": "Mark",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Mark",
      "startTime": 1,
      "finishTime": 5.06,
      "dialogue": {
        "text": "Does that mean breaking code into smaller parts like encapsulating it?",
        "align": "center"
      }
    },
    {
      "character": "Mark",
      "opacity": 0,
      "startTime": 5.56
    }
  ]
}