Variable types Flashcards
1
Q
boolean
A
True or False
2
Q
byte
A
Stores whole numbers from -128 to 127
3
Q
char
A
Stores a single character
4
Q
double
A
A data type that can store whole numbers from 1.7e-308 to 1.7e+308
5
Q
enum
A
Declares an enumerated (unchangeable) type
6
Q
float
A
a data type that can store whole numbers from 3.4e-0.38 to 3.4e+0.38
7
Q
int
A
a data type that can store whole numbers from -9223372036854775808 to 9223372036854775808
8
Q
short
A
data type that can store whole numbers from -32768 to 32767
9
Q
var
A
declares a variable