Using a FOR loop, print the values 10 to 1 in reverse order.

What will be an ideal response?

```
SQL> BEGIN
2 FOR v_count In REVERSE 1..10 LOOP
3 DBMS_OUTPUT.PUT_LINE(v_count);
4 END LOOP;
5 END;
6 /
10
9
8
7
6
5
4
3
2
1

PL/SQL procedure successfully completed.
```

Computer Science & Information Technology

You might also like to view...

You can choose to use range names in formulas that you create instead of cell references

Indicate whether the statement is true or false

Computer Science & Information Technology

Identify the syntax that determines how a new item is inserted into a nested list.

A. if (headLevel > prevLevel) {// Append the list item to the current list} else if (headLevel < prevLevel) {// Start a new nested list} else {// Append the entry to a higher list} B. if (headLevel === prevLevel) {// Append the list item to the current list} else if (headLevel > prevLevel) {// Start a new nested list} else {// Append the entry to a higher list} C. if (headLevel > prevLevel) {// Append the list item to the current list} else if (headLevel === prevLevel) {// Start a new nested list} else {// Append the entry to a higher list} D. if (headLevel !=== prevLevel) {// Append the list item to the current list} else if (headLevel < prevLevel) {// Start a new nested list} else {// Append the entry to a higher list}

Computer Science & Information Technology