(3) {:statement>} may be a multi-statement.(4) When IF is nested, the ELSE is assumed to be pairedwith the IF immediately before. Therefore, the ELSEcannot be omitted in nested IF statement. Only theoutermost IF statement can omit the ELSE starement.Examples>100 IF A<3 THEN A=A-1:C=D:H=H+2:G0T0 200 ELSE 300>100 IF A=B GOTO 500 ELSE A=0:G0T0 600>100 IF A=B THEN IF C THEN 200 ELSE 300ELSE IF C>D THEN 400 ELSE 5003— 54