What is a building block? Does Word provides a predefined list of building blocks? If yes, where can you find this list?

What will be an ideal response?


A building block is a predefined object that can be inserted quickly, easily, and frequently into any document. Yes, Word provides a predefined list of building blocks. It is available in the Building Block Organizer.

Computer Science & Information Technology

You might also like to view...

One of the fastest ways to switch from editing one method to editing another is to right-click an invocation of that method in the ____ and then choose its name from the ____ that appears. 

A. object tree; object selector B. editing area; context menu C. structure diagram; context menu D. details area; object selector

Computer Science & Information Technology

Java has two basic kinds of numeric values: _____________, which have no fractional part, and ___________________ which do.

a) shorts, longs b) doubles, floating points c) characters, bytes d) integers, floating points e) integers, longs

Computer Science & Information Technology

Reports with columnar data should not use __________.

a. proportionally spaced fonts b. the Courier New font c. monospaced fonts d. all of the above

Computer Science & Information Technology

(What Does this Program Do?) What does the following program print?

``` // Exercise 4.22: Mystery3.cpp #include using namespace std; int main() { unsigned int row{10}; while (row >= 1) { unsigned int column{1}; while (column <= 10) { cout << (row % 2 == 1 ? "<" : ">"); ++column; } --row; cout << endl; } } ```

Computer Science & Information Technology