Back to Freecodecamp

Task 40

curriculum/challenges/english/blocks/learn-how-to-use-code-related-concepts-and-terms/663352b4860f03995736b6cd.md

latest2.1 KB
Original Source
<!-- (Audio) Sophie: Variables help you store information in your code, like names, numbers, and more. -->

--description--

Store information means to keep or save data in a specific location, usually in a variable. Variables are like containers in your code that hold information, such as numbers, text, or other types of data. You can think of them as named storage spots where you can access the stored information later in your code.

For example, int age = 30; Here, the variable age stores the number 30.

The word like is used as a preposition to give examples or to compare similar things.

For instance, if you say, I love fruits like apples and oranges. You are using like to give examples of the type of fruits you love, suggesting that there might be more fruits on that list.

--fillInTheBlank--

--sentence--

Variables help you BLANK BLANK in your code, BLANK names, numbers, and more.

--blanks--

store

--feedback--

This word means to keep or save something for future use. In the context, it refers to keeping data in a variable.


information

--feedback--

It refers to data or details that are kept in the computer. In this sentence, it means the data saved in variables.


like

--feedback--

It is used to give examples of what can be stored in variables.

--scene--

json
{
  "setup": {
    "background": "company2-center.png",
    "characters": [
      {
        "character": "Sophie",
        "position": {
          "x": 50,
          "y": 0,
          "z": 1.4
        },
        "opacity": 0
      }
    ],
    "audio": {
      "filename": "5.2-3.mp3",
      "startTime": 1,
      "startTimestamp": 6.48,
      "finishTimestamp": 11.18
    }
  },
  "commands": [
    {
      "character": "Sophie",
      "opacity": 1,
      "startTime": 0
    },
    {
      "character": "Sophie",
      "startTime": 1,
      "finishTime": 5.7,
      "dialogue": {
        "text": "Variables help you store information in your code, like names, numbers, and more.",
        "align": "center"
      }
    },
    {
      "character": "Sophie",
      "opacity": 0,
      "startTime": 6.2
    }
  ]
}