In its simplest form, a what-if analysis in a worksheet is generated by ____ the value in one or more input cells and observing the effects in other, dependent, cells.

A. changing
B. selecting
C. deleting
D. filtering


Answer: A

Computer Science & Information Technology

You might also like to view...

In the decimal to binary algorithm presented in this chapter, how do you determine what power of two to start the “place values” row of the table with?

What will be an ideal response?

Computer Science & Information Technology

What is the output of the following code?

``` ArrayList list = new ArrayList(); String s1 = new String("Java"); String s2 = new String("Java"); list.add(s1); list.add(s2); System.out.println((list.get(0) == list.get(1)) + " " + (list.get(0)).equals(list.get(1))); ``` a. true false b. false true c. true true d. false false

Computer Science & Information Technology

________ was originally launched in 1985 with the StarWriter word-processing program

Fill in the blank(s) with correct word

Computer Science & Information Technology

A(n) ____ page is a Web page designated as the first page and point of entry into a Web site.

a. home b. entry c. base d. origin

Computer Science & Information Technology