All of the following are reasons to add a graphic to a slide EXCEPT ________
A) to illustrate a point
B) create interest
C) simply for the sake of adding a graphic
D) add humor
C
Computer Science & Information Technology
You might also like to view...
A table presents information in columns and ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
The following code attempts to find the sum of the elements in the third column (from the left) of a two dimensional int array called a that has 10 rows and 20 columns. Correct the errors in the code.
int sum = 0; for (int i = 0; i < 20; i++) sum = sum + a[3][i];
Computer Science & Information Technology