Back to Freecodecamp

Task 25

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

latest2.3 KB
Original Source
<!-- (Audio) Sophie: Think of it as wrapping code to limit what other parts can see. -->

--instructions--

Listen to the audio and complete the sentence below.

--fillInTheBlank--

--sentence--

BLANK it BLANK BLANK code to BLANK what other parts can see.

--blanks--

Think of

--feedback--

This two-word phrase means to imagine or consider something in a certain way. The first letter of the first word is capitalized.


as

--feedback--

This word is used to introduce what something is being compared to, showing its role or nature in this context.


wrapping

--feedback--

This verb refers to enclosing or covering something. It ends with -ing.


limit

--feedback--

This verb means to control or restrict something.

--explanation--

Think of it as is used to help someone understand a concept by comparing it to something they are already familiar with. It encourages you to imagine the concept in a way that makes it easier to understand. For example:

Think of a function as a recipe. - This helps you picture a function as a set of instructions, similar to how a recipe provides steps to create a dish.

Wrapping code means enclosing or packaging code in a way that controls access to it. This will limitthe access to the code. For example:

We're wrapping the database access code inside a function to hide the complexity from the rest of the program. - This means the database interactions are hidden from the outside, and the function provides a simplified interface to work with.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Sophie",
        "position": {
          "x": 50,
          "y": 0,
          "z": 1.4
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "B1_16-1.mp3",
      "startTime": 1,
      "startTimestamp": 43.7,
      "finishTimestamp": 46.86
    }
  },
  "commands": [
    {
      "character": "Sophie",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Sophie",
      "startTime": 1,
      "finishTime": 4.16,
      "dialogue": {
        "text": "Think of it as wrapping code to limit what other parts can see.",
        "align": "center"
      }
    },
    {
      "character": "Sophie",
      "opacity": 0,
      "startTime": 4.66
    }
  ]
}