If Statement :
if(conditional)
{
//True code
}
else
{
//False code
}Note :
- If part Executed if Condition Statement is True.
- Else Part executed if Condition Statement is False.
- 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”


