Briefly describe how to change the font and font size for all of the text in a document.

What will be an ideal response?


Select all of the text by pressing the CTRL + A keys. Click the Font box drop-down arrow and click a font. Click the Font Size box drop-down arrow and click a font size. Deselect the text.

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` #include using namespace std; void f1(int x, int &y, int* z) { x++; y++; (*z)++; } int main() { int i = 1, j = 1, k = 1; f1(i, j, &k); cout << "i is " << i; cout << " j is " << j; cout << " k is " << k << endl; return 0; } ``` a. i is 2 j is 2 k is 2 b. i is 1 j is 2 k is 3 c. i is 1 j is 1 k is 1; d. i is 1 j is 2 k is 2

Computer Science & Information Technology

Clicking this icon in the Design tab of the Ribbon will open a list of mathematical summaries that can be applied to a field in a PivotTable:

A) AutoCalc. B) Field List. C) Drop Zones. D) Show Details.

Computer Science & Information Technology

A ________ is a program that defines how form data should be handled by a Web server

Fill in the blank(s) with correct word

Computer Science & Information Technology

Examples of ____________________ users are sales reps, real estate agents, insurance agents, meter readers, package delivery people, journalists, consultants, and students.

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

Computer Science & Information Technology