True/False
The following code fragment is a correct example of the use of a WHILE loop.
BEGIN
WHILE lv_cnt_num <= 5
DBMS_OUTPUT.PUT_LINE( lv_cnt_num );
lv_cnt_num := lv_cnt_num + 1;
END LOOP;
END;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q55: The following code fragment is a correct
Q56: The only required sections of a PL/SQL
Q57: Which of the following does not use
Q58: The code order NUMBER(2) := 6; is
Q59: The statements that are used to control
Q61: Which of the following code fragments would
Q62: The EXIT WHEN clause ensures that a
Q63: Which of the following statements is correct?<br>A)
Q64: If the <u>WHERE </u>clause is not included
Q65: Which of the following code fragments would