What output is produced by the following code fragment?

```
for (int val = 200; val >= 0; val -= 1)
if (val % 4 != 0)
System.out.println(val);

```

The output produced is all values from 200 down to 0, except those that are evenly divisible by 4:
199
198
197
195
and so on until…
5
3
2
1

Computer Science & Information Technology

You might also like to view...

As you enter text in a Word document, ____ wavy lines may appear under words with possible spelling issues.

A. red B. green C. blue D. black

Computer Science & Information Technology

The _____ was formed in 1999 to certify interoperability of wireless network products based on IEEE 802.11 specifications.

A. Wi-Fi Alliance B. Institute of Electrical and Electronics Engineers (IEEE) C. World Wide Web Consortium (W3C) D. Wi-MAX

Computer Science & Information Technology