True/False
The following code fragment is a correct example of the use of a basic loop.
BEGIN
LOOP
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
Q50: The _ statement is a mechanism that
Q51: Which of the following statement blocks correctly
Q52: A(n) _ statement does not use a
Q53: Which of the following dictates exactly how
Q54: Which of the following can be referenced
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
Q60: The following code fragment is a correct