Block Statements
o Compound/Block Statement: A list of statements enclosed in a pair of braces.
o Java treats compound statement as a single statement
o It is very useful to be used with different control structure
o Syntax of if statement using block statements:
if (conditions){
statement(s);
}