Modify the example program immediately preceding these practice problems to produce the following output: 15, 10, 5, 0, —5, —10, —15.

Replace LET n = 200 • Replace DO WHILE n > = 0 Replace LET n = n — 25

with LET n = 15
with DO WHILE n > = — 15 with LET n = n — 5


The modified program is
```
LET n = 15
DO WHILE n > = —15 OUTPUT n
LET n = n — 5
LOOP
```

Computer Science & Information Technology

You might also like to view...

In the case of every one of the EBK security functions, the ____ stage creates a framework of concrete security procedures and practices, which then serve as the basis for executing the process in the real world.

A. plan B. execute C. design D. review

Computer Science & Information Technology

What are the three kinds of analysis results of the Performance Analyzer?

A) Recommendations, suggestions, and ideas B) Recommendations, trade-offs, and ideas C) Suggestions, trade-offs, and ideas D) Ideas, suggestions, and solutions

Computer Science & Information Technology

________ storage devices do not lose data or programs after the electrical power is turned off.

A. Communication B. Input/output C. Secondary D. Primary

Computer Science & Information Technology

The traceroutecommand defaults to IPv4.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology