Back to Freecodecamp

Task 9

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

latest2.0 KB
Original Source
<!-- (Audio) Mark: Well, you mentioned "polymorphism". -->

--instructions--

Listen to the audio and complete the sentence below.

--fillInTheBlank--

--sentence--

Well, you BLANK "BLANK".

--blanks--

mentioned

--feedback--

This verb means to refer to something or bring it up in conversation. It ends with -ed.


polymorphism

--feedback--

This is a programming concept where one method can operate on different types of data or objects.

--explanation--

Mentioned means to briefly refer to something or talk about it. It's often used when someone brings up a topic in conversation. For example:

She mentioned the meeting time in her email. – She referred to the meeting time.

Polymorphism is a programming concept. It means a single function, method, or operator can be used with different types of data or objects. For example:

In object-oriented programming, polymorphism allows a single method to behave differently based on the object that calls it. - Here, polymorphism refers to a method that can perform different actions depending on which object is using it. For example, the same method draw() might behave differently when called by a Circle object or a Rectangle object.

--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": 9.34,
      "finishTimestamp": 11.62
    }
  },
  "commands": [
    {
      "character": "Mark",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Mark",
      "startTime": 1,
      "finishTime": 3.28,
      "dialogue": {
        "text": "Well, you mentioned polymorphism.",
        "align": "center"
      }
    },
    {
      "character": "Mark",
      "opacity": 0,
      "startTime": 3.78
    }
  ]
}