Back to Freecodecamp

Task 11

curriculum/challenges/english/blocks/learn-how-to-analyze-code-documentation/66068b650b681c91de9e19a0.md

latest2.5 KB
Original Source
<!-- (Audio) Brian: When dealing with functions, start by looking at the function's signature. It can provide information about the function's name, parameters, and return type. -->

--description--

The possessive 's shows something belongs to someone or something, like in Brian's book, meaning the book belongs to Brian.

Dealing means managing or handling something. For example, When dealing with homework, it's important to be focused.

A function's signature in programming is like an ID card for a function. It tells you the function's name, what it needs (parameters), and what it gives back (return type).

The return type of a function is what the function gives back after it runs, like a vending machine returning a soda after you put in money.

--fillInTheBlank--

--sentence--

When BLANK with functions, start by looking at the BLANK signature. It can BLANK information about the function's name, parameters, and return BLANK .

--blanks--

dealing

--feedback--

It refers to how you manage or work with something, like functions in programming.


function's

--feedback--

It shows that the signature belongs to the function. Remember, 's is used to show possession.


provide

--feedback--

It means to give or supply. In this context, it refers to the signature giving information.


type

--feedback--

It refers to the kind of value a function returns after it finishes running.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Brian",
        "position": {
          "x": 50,
          "y": 15,
          "z": 1.2
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "7.3-2.mp3",
      "startTime": 1,
      "startTimestamp": 6.02,
      "finishTimestamp": 13.68
    }
  },
  "commands": [
    {
      "character": "Brian",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Brian",
      "startTime": 1,
      "finishTime": 4.14,
      "dialogue": {
        "text": "When dealing with functions, start by looking at the function's signature.",
        "align": "center"
      }
    },
    {
      "character": "Brian",
      "startTime": 4.44,
      "finishTime": 8.66,
      "dialogue": {
        "text": "It can provide information about the function's name, parameters, and return type.",
        "align": "center"
      }
    },
    {
      "character": "Brian",
      "opacity": 0,
      "startTime": 9.16
    }
  ]
}