If Statement :
if(conditional){ //code}Note :
- More than One Conditions can be Written inside If statement.
- Opening and Closing Braces are required only when “Code” after if statement occupies multiple lines.
- Code will be executed if condition statement is True.
- Non-Zero Number Inside if means “TRUE Condition”


