Discuss when you would use Merge and Center in a worksheet.

What will be an ideal response?


Merge and Center is helpful when you want to center a main title over the worksheet data columns. It is also used to center headings over subheadings, such as merging and centering the heading Revenue over two subheadings Gross and Net.

Computer Science & Information Technology

You might also like to view...

Which of the following code segments sets all elements of the array strStudentNames to the value NONE?

a. ```Dim intCount as Integer For intCount = 1 to (strStudentNames.Length - 1) strStudentNames(intCount) = "NONE" Next intCount ``` b. ```Dim intCount as Integer For intCount = 0 to (strStudentNames.Length - 1) strStudentNames(intCount) = "NONE" Next intCount ``` c. ```Dim intCount as Integer For intCount = 0 to (strStudentNames.Length) strStudentNames(intCount) = "NONE" Next intCount ``` d. ```Dim intCount as Integer For intCount = 1 to (strStudentNames.Length) strStudentNames(intCount) = "NONE" Next intCount ```

Computer Science & Information Technology

Show the output of the following code.

``` #include using namespace std; class Parent { public: Parent() { cout << "Parent’s no-arg constructor is invoked" << endl; } ~Parent() { cout << "Parent’s destructor is invoked" << endl; } }; class Child: public Parent { public: Child() { cout << "Child’s no-arg constructor is invoked" << endl; } ~Child() { cout << "Child’s destructor is invoked" << endl; } }; int main() { Child c1; Child c2; return 0; } ```

Computer Science & Information Technology

The Research task pane can be found on the ________ tab

A) View B) Review C) Insert D) Proofing

Computer Science & Information Technology

?Which of the following would call into question the validity of the dataset?

A. ?a value not submitted in the expected format B. ?results that are different than expected C. ?more data values than expected D. ?values that fall within the anticipated range

Computer Science & Information Technology