Identify and correct the error(s) in each of the following:

```
while (y > 0) {
cout << y << endl;
++y;
}
```


The variable y should be decremented (i.e., --y;), not incremented (++y;).

Computer Science & Information Technology

You might also like to view...

Class Arrays provides method __________ for comparing arrays to determine whether they have the same contents.

a. compare b. compares c. equal d. equals

Computer Science & Information Technology

When you select the Merge & Center button, only the contents from the cell in the ____ corner of the range are kept. All other content is deleted from the worksheet.

A. upper-left B. lower-left C. upper-right D. lower-right

Computer Science & Information Technology

Define the left child of node n in a binary tree.

What will be an ideal response?

Computer Science & Information Technology

The default name for a new table is ______.

A. AccessTable B. NewTable C. TableNew D. Table1

Computer Science & Information Technology