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
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.
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)++;
Algorithm __________ randomly orders a List's elements.
a. randomShuffle. b. randomPlacement. c. fiftyTwoCardPickup. d. shuffle.
In an undirected graph, two or more edges connect the same pair of vertices.
Answer the following statement true (T) or false (F)