Basic data storage in computer programs is done using variables and constants.
What is a Variable?
Variables are used to store data that can be accessed and manipulated by a computer program. They also allow us to label data with descriptive names, making our programs easier to understand for both the reader and ourselves.
Variables can be thought of as information-holding containers. They exist solely to label and store data in memory. This information will then be used throughout your program.
What is a Constants?
A constant is a named chunk of memory whose value cannot be changed while the program is running.
Constants are useful because they are declared and assigned only once but can be referenced multiple times throughout the program. This means that if the programmer needs to change a value throughout the program code, only one change is required. This can make it easier to maintain a program.
To learn more about Variables, visit: https://brainly.com/question/28248724
#SPJ4