About 33,800,000 results
Open links in new tab
  1. Variable (computer science) - Wikipedia

    The scope of a variable describes where in a program's text the variable may be used, while the extent (also called lifetime) of a variable describes when in a program's execution the variable …

  2. Variable in Programming - GeeksforGeeks

    Jul 23, 2025 · Variables are essential for storing and manipulating data in computer programs. A variable is the basic building block of a program that can be used in expressions as a …

  3. What is a Variable? - Computer Hope

    Jun 1, 2025 · A variable is a named unit of data that is assigned a value. If the value is modified, the name does not change. Variables are used with most programming languages and come …

    Missing:
    • computer science
    Must include:
  4. What is a variable in computer programming? - launchschool.com

    Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be …

  5. What is a Variable? - W3Schools

    Variables are one of the most basic and essential concepts in programming, used to store values. What is a Variable? A variable has a name, and you can store something in it. The image …

  6. What is a variable in computer science? - clrn.org

    Jul 2, 2025 · In the realm of computer science, a variable represents a symbolic name assigned to a memory location. This location serves as a container for storing a value that can be …

  7. Variables - Programming basics - KS3 Computer Science

    A variable can be thought of as a box that the computer can use to store a value. The value held in that box can change or ‘vary’. A program can use as many variables as it needs it to.

  8. What is variable? | Definition from TechTarget

    Oct 13, 2021 · In programming, a variable is a value that can change, depending on conditions or on information passed to the program. Typically, a program consists of instruction s that tell …

  9. Variables in Computer Science Study Guide | Quizlet

    It contains some known or unknown quantity of information referred to as a value. The variable name is used to reference the stored value within a computer program or computation. …

  10. Variables in Programming: AP® CS Principles Review - Albert

    May 19, 2025 · Variables in programming are like labeled boxes that hold information. They make it possible to store, retrieve, and update data throughout a program. Often, data in a program …