Any time you use a worksheet to ask the question "what if?" you are performing ____________________ analysis.

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


what if

Computer Science & Information Technology

You might also like to view...

Analyze the following code.

``` int main() { int x[3]; cout << "x[0] is " << x[0]; } ``` a. x[0] has an arbitrary value. b. The program has a compile error because the size of the array wasn't specified when declaring the array. c. The program runs fine and displays x[0] is 0. d. The program has a runtime error because the array elements are not initialized. e. The program has a runtime error because the array element x[0] is not defined.

Computer Science & Information Technology

Suppose you declare the following:

``` double radius = 5; const double const* pValue = &radius; ``` Which of the following statements are allowed? A. pValue = &radius; B. cout << *pValue; C. radius++; D. *pValue = 0; E. (*pValue)++;

Computer Science & Information Technology

Algorithm __________ randomly orders a List's elements.

a. randomShuffle. b. randomPlacement. c. fiftyTwoCardPickup. d. shuffle.

Computer Science & Information Technology

In an undirected graph, two or more edges connect the same pair of vertices.

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

Computer Science & Information Technology