Write the for loop that will output the characters with ASCII codes 70 to 74.

What will be an ideal response?


for (int c = 70; c < 75; c++)
cout << char (c);
(other answers are possible)

Computer Science & Information Technology

You might also like to view...

Which of the following is not a Java AWT portability issue?

a. GUI components that have different looks on different platforms may use different amounts of space. b. GUI components may have different default functionality. c. Different platforms may have different representations of integers. d. All of the above.

Computer Science & Information Technology

The ____________________ option of the Scale attribute of a Flash movie fits the movie into the designated space so that no borders show, and the movie maintains the original aspect ratio.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

With XML, the content, format, and structure are contained in a single document

Indicate whether the statement is true or false.

Computer Science & Information Technology

While a void function does not return a value, it must still end with areturnstatement.

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

Computer Science & Information Technology