About 3,340 results
Open links in new tab
  1. Variable (high-level programming) - 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 has a …

  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 substitute in …

  3. Variables - Programming basics - KS3 Computer Science ... - BBC

    Variables are a key element of programming. They are used for calculations, for storing values for later use, in decisions and in iteration. Learn about programming basics and how to program a...

  4. 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 below shows …

  5. What is a variable in computer science? - California Learning ...

    Jul 2, 2025 · Variables are a fundamental concept in computer science, providing a mechanism for storing and manipulating data within programs. A thorough understanding of variable types, …

  6. 1: Variables | Computer Science Circles

    Variables act as "storage locations" for data in a program. They are a way of naming information for later usage. Each variable has a name; an example variable name we will use is myLuckyNumber. To …

  7. Programming - Variables - University of Utah

    Variables in a computer program are analogous to "Buckets" or "Envelopes" where information can be maintained and referenced. On the outside of the bucket is a name. When referring to the bucket, we …