Explain why you would switch rows and columns in a chart.

What will be an ideal response?


You might want to switch the row and column data to give a different perspective and to change the focus on the data being charted. Switching data reverses the category axis and the data series.

Computer Science & Information Technology

You might also like to view...

Cells are named using a combination of the column ________ and row number

A) letter B) address C) name D) identifier

Computer Science & Information Technology

Which of the following is NOT true about customizing a report?

A) Reports created by the wizard can be easily customized after they have been created and saved. B) Themes can be applied to just the report or the whole database to change the colors, fonts, or both. C) Controls, bound and unbound, can be added or modified on the report to make room for more information or to rearrange the information already there. D) To break a report into smaller sections, grand totals or sorts may be added.

Computer Science & Information Technology

When you delete an object from an existing class, you are said to be instantiating the object.

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

Computer Science & Information Technology

int puzzle(int start, int end){  if (start > end)     return start - end;  else if (start == end)     return start + end;  else     return end * puzzle(start + 1, end - 1);} Consider the accompanying definition of a recursive function. What is the output of the following statement?cout << puzzle(3, 7) << endl;

A. 10 B. 21 C. 42 D. 420

Computer Science & Information Technology