Where is the continue statement NOT usually used?

A. while loops
B. for loops
C. switch structures
D. do...while loops


Answer: C

Computer Science & Information Technology

You might also like to view...

Which of the following is the opposite of a gateway?

A. a firewall B. an antivirus program C. an intrusion D. a defense wall

Computer Science & Information Technology

This if statement should assign the heavier weight to heaviest and the lighter weight to lightest. What is wrong with this code?

```1 if (weight1 > weight2) 2 heaviest = weight1; 3 lightest = weight2;``` A. Nothing. It works fine. B. Heaviest is weight1 regardless of the if statement. C. The statement is written incorrectly – crash. D. Line 3 gets executed no matter what. {} are needed.

Computer Science & Information Technology

USB devices are hot-swappable

Indicate whether the statement is true or false

Computer Science & Information Technology

________ is the removing of unwanted areas of an image

A) Cutting B) Recoloring C) Cropping D) Compressing

Computer Science & Information Technology