What is displayed by the C statements that follow if the value input is 2?

```
scanf("%d", &ctl);
switch (ctl) {
case 0:
case 1:
printf("red ");
case 2:
printf("blue ");
case 3:
printf("green ");
case 4:
printf("yellow");
}
printf("\n");
```
a. red
b. blue
c. green
d. yellow
e. blue green yellow


E

Computer Science & Information Technology

You might also like to view...

Intermediate operations are________; they aren’t performed until a terminal operation is invoked. This allows library developers to optimize stream-processing performance.

a. eager b. idle c. lazy d. inactive

Computer Science & Information Technology

How do you open the Text Form Field Options dialog box?

A. Right-click the text form field, then click Options. B. Double-click the text form field. C. Click the Field Options button in the selection of Legacy Tools. D. Click the Options button in the selection of Legacy Tools.

Computer Science & Information Technology

The only way to use sound in a Flash movie is to use an action that calls the sound file from its URL link.

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

Computer Science & Information Technology

The link between a file type and its default program is called a(n) file association.

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

Computer Science & Information Technology