What are the primitive data types?
How to declare variables of different types?
How to assign values to variables?
What are the operations defined on different primitive data types?
How to create a java file and run a java program? we will also see more today.
if (boolean expresion)
stmt
else
stmt
while (boolean expression)
stmt
do
stmt
while (boolean expression);
for (initial stmt; end condition; increment stmt)
stmt
switch (expression){
case option1:
stmt;
break;
case option2:
stmt;
break;
default:
stmt;
}