Critical Thinking QuestionsCase 3-2Your friend is new to using tables and he is having a lot of difficulty manipulating them. You offer to help him with some tips for selecting items in the table, for starters.Which of the following allows you to select the entire table?
a. triple-click the tablec. click to the left of the topmost rowb. click the border at the top of the leftmost columnd. click the table move handle

What will be an ideal response?


Answer: D

Computer Science & Information Technology

You might also like to view...

A(n) _____ search requires the search engine to find pages that include a particular sentence with words in a specified order.

A. matching-phrase B. exact-phrase C. Boolean D. keywords

Computer Science & Information Technology

What does the following program do?

``` // What does this program do? #include using namespace std; int mystery( int, int ); // function prototype int main() { int x, y; cout << "Enter two integers: "; cin >> x >> y; cout << "The result is " << mystery( x, y ) << endl; } // end main // Parameter b must be a positive integer to prevent infinite recursion int mystery( int a, int b ) { if ( b == 1 ) // base case return a; else // recursion step return a + mystery( a, b - 1 ); } // end function mystery ```

Computer Science & Information Technology

A thesaurus provides:

A) Words with similar meanings B) Reading level of the document C) Correct word usage

Computer Science & Information Technology

(Function Template Overloading) Overload function template printArray of Fig. 14.1 with a nontemplate version that prints an array of character strings in neat, tabular, column format.

What will be an ideal response?

Computer Science & Information Technology