Solved

BEGIN LOOP DBMS_OUTPUT.PUT_LINE(lv_cnt_num);

Question 69

Multiple Choice

BEGIN LOOP
DBMS_OUTPUT.PUT_LINE(lv_cnt_num) ;
Lv_cnt_num := lv_cnt_num + 1;
EXIT WHEN lv_cnt_num >= 5;
END LOOP;
END;
Which of the statements in the code fragment above ensures that the loop executes at least once?


A) LOOP
B) lv_cnt_num := lv_cnt_num + 1;
C) EXIT WHEN lv_cnt_num >= 5;
D) DBMS_OUTPUT.PUT_LINE(lv_cnt_num) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions