MCQOPTIONS
Saved Bookmarks
| 1. |
BEGIN a := 100; IF( a < 20 ) THEN dbms_output.put_line('a is less than 20 ' ); ELSE dbms_output.put_line('a is not less than 20 ' ); END IF; END; 4.Which of the following is true? |
| A. | It's ELSIF, not ELSEIF. |
| B. | An IF-THEN statement can have zero or one ELSE's and it must come after any ELSIF's. |
| C. | Once an ELSIF succeeds, none of the remaining ELSIF's or ELSE's will be tested. |
| D. | All of the above |
| Answer» E. | |