____ sort requires knowing where the middle element of the list is.

A. Merge
B. Bubble
C. Insertion
D. Selection


Answer: A

Computer Science & Information Technology

You might also like to view...

The following is a definition of class Example:

``` class Example { public: Example(int y = 10) : data(y) { } int getIncrementedData() const { return ++data; } static int getCount() { cout << "Data is " << data << endl; return count; } private: int data; static int count; }; ```

Computer Science & Information Technology

The large grey handle in the top-left corner is called the ________

A) resizing handle B) move handle C) delete handle D) sizing handle

Computer Science & Information Technology

Modify example program so it can accommodate any positive data value up to the maximum that the computer can accept. Your solution should not depend upon knowing the value of that maximum number.

Replace sentinel value 9999 in data list	           with —9999 (or any negative number)
Replace DO WHILE num < 9999	                    with DO WHILE num > = 0

Computer Science & Information Technology

Input values are listed in both columns and rows in a(n) ________ data table

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

Computer Science & Information Technology