Which of the following is declared correctly and will not result in an error assuming x = 2 and y = 30?

a.
```
for ( var j = 10; j <= 80; j-- )
```
b.
```
for ( var j = x, j <= y, j += 5 )
```
c.
```
for ( var j = x; j <= 80 * y; j += 5 / x )
```
d.
```
for ( var j = x; j <= 80 * y; j -= 5 )
```

c.
```
for ( var j = x; j <= 80 * y; j += 5 / x )
```

Computer Science & Information Technology

You might also like to view...

One increment, or pulse, of a clock is referred to as a __________ .

A. clock cycle B. clock rate C. clock speed D. cycle time

Computer Science & Information Technology

A possible misspelling is indicated by a _____.

A. wavy blue underline B. wavy red underline C. solid blue underline D. solid red underline

Computer Science & Information Technology