010101111
111101010
Bits? Why bits?
Variables are holders of information (bits)
Information can be changed at any time
x = 4;name = "Polina"weight = 5.45double polinaRealAge = 67.9;The mighty integer...
int polinaAge = 67;Doing it with precision
String polinaName = "Polina";
// Hmm... am I clever enough for you?Typing something "really" useful
Ready for the simplest? True or false?
boolean readyToStart = true;What the answer is?
int c = 60 + 9;The meaning of life is...
int c = 50 - 8;They multiply
int c = 111 * 6;Don't try this at home?
int c = 1000 / 0;Time to code some