Nested if else statement
syntax
If(test condition1)
{
If(test condition2);
{
Statement1;
}
Else
{
Statement2
}
Else
{
Statement 3
}
Statement –x
If the test expression can be executed first if it is true then true block can be executed immediately
following if statement are executed otherwise false statement are executed
if neither case...