Multiple Choice
BEGIN WHILE lv_cnt_num <= 5 LOOP
DBMS_OUTPUT.PUT_LINE(lv_cnt_num) ;
Lv_cnt_num := lv_cnt_num + 1;
END LOOP;
END;
According to the code fragment above, how many times does the loop iterate?
A) 3
B) 4
C) 5
D) 6
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q20: _ are named memory areas that hold
Q21: _ are used for situations in which
Q22: <u>Variables</u> are named memory areas that hold
Q23: What is the purpose of control structures?
Q24: The following loop terminates when the lv_cnt_num
Q26: To declare a variable, you must supply
Q27: Why would the following code raise an
Q28: Which of the following clauses ensures that
Q29: The _ loop is constructed with conditions
Q30: When an IF statement checks only one