Variables and Arrays Flashcards
1
Q
What is a Variable?
A
Is data that stores information in memory for later use.
2
Q
What is an array?
A
Is the storage of multiple related variables together.
3
Q
What data type will store whole numbers?
A
Integer.
4
Q
What Data type will store decimal numbers?
A
Floats.
5
Q
What are constants?
A
Are values that are used within a program that do not change the variables.
6
Q
What data type stores text?
A
String.
7
Q
What data type stores True or False Values?
A
Boolean.