
Programming with variables | AP CSP (article) | Khan Academy
In programming, a variable is like a box where you can store information (like a number or a word). This information can be changed later on (whereas a constant keeps the information it …
Khan Academy | Khan Academy
Oops. Something went wrong. Please try again. Uh oh, it looks like we ran into an error. You need to refresh. If this problem persists, tell us.
Computational thinking with variables | Khan Academy
How does the way computers process information differ from how humans process information? Learn how computers interpret sequence and state as you write, run, and debug your first …
String operations in programs | AP CSP (article) | Khan Academy
Combining and slicing strings are just two ways we can manipulate string variables. Depending on what you're trying to do in your program, you may want to modify strings in other ways.
Programming with variables | AP CSP (article) | Khan Academy
When we're first developing a program, we often display the value of variables to double-check the state of the program. Are the variables storing what we think they're storing, or did our …
Variables and assignment (video) | Variables | Khan Academy
A variable is a reserved location in the computer's memory for storing a value. We associate each location with a name, so it's easy for us as the programmers to refer to a specific location later.
Programming mathematical expressions | AP CSP (article) - Khan …
Storing with variables We'll often want to store the results of mathematical expressions in variables, especially if we want to reuse the results of a calculation later.
What is computer science? (video) | Khan Academy
What is the difference between computer science and computer programming? Explore the origins of programming languages to understand what it means to program.
Big data overview | AP CSP (article) | Khan Academy
Big data sets are so large that our traditional ways of storing and processing them are no longer adequate, presenting challenges to computer scientists and data engineers.
Custom programming procedures | AP CSP (article) | Khan Academy
Once we've defined that function, we can call it whenever we'd like, and the computer will execute the statements that are inside the function block (between the curly brackets).