You may hear programmers refer to looping as ____.

A. execution
B. selection
C. iteration
D. case


Answer: C

Computer Science & Information Technology

You might also like to view...

What does this code fragment store in d1 and d2 if the input file contains

``` string d1, d2; ... infile >>d1; getline( infile, d2 ); first line second line ``` a. d1 = "first" d2 = " line" b. d1 ="first" d2 = "second line" c. d1 = "first line" d2 = "second line" d. d1 = "first" d2 = " line second line"

Computer Science & Information Technology

What output will be produced by the following code?

``` public class SelectionStatements { public static void main(String[] args) { int number = 24; if(number % 2 == 0) System.out.print("The condition evaluated to true!"); else System.out.print("The condition evaluated to false!"); } } ```

Computer Science & Information Technology

The _________ class contains methods for drawing text, lines, rectangles and other shapes

a) Pictures b) Drawings c) Graphics d) Illustrations

Computer Science & Information Technology

Macros provide you with an opportunity to make certain tasks much more efficient and accurate.

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

Computer Science & Information Technology