?Apart from using the Text from File button, you can also just open a(n) _________ file in a Word window, copy tables, and paste them into the destination file.
A. Plain Text Format
B. Rich Text Format
C. Database Format
D. Worksheet Format

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


Rich Text Format

Rationale: You could open a Rich Text Format (RTF) file in a Word window, copy the table, and then paste it into the destination document. In Word, you can also use the Text from File command on the Object button menu to insert only the text of another text file. See 22-3: Using the Object Command in Word, Excel, and PowerPoint

Computer Science & Information Technology

You might also like to view...

Write a C++ program that uses the statements to calculate x raised to the y power. The program should have a while iteration statement.

``` // Exercise 4.8 Solution: power.cpp // Raise x to the y power. #include using namespace std; int main() { unsigned int i{1}; // initialize i to begin counting from 1 unsigned int power{1}; // initialize power cout << "Enter base as an integer: "; // prompt for base unsigned int x; // base cin >> x; // input base cout << "Enter exponent as an integer: "; // prompt for exponent unsigned int y; // exponent cin >> y; // input exponent // count from 1 to y and multiply power by x each time while (i <= y) { power *= x; ++i; } // end while cout << power << endl; // display result } // end main ```

Computer Science & Information Technology

Collections method sort that accepts a List as an argument. It sorts the List elements, which must implement the __________ interface.

a. Comparable. b. Comparator. c. Compare. d. Ordering.

Computer Science & Information Technology

Briefly describe the nested hybrid network model.

What will be an ideal response?

Computer Science & Information Technology

The primary use of default arguments is to ____ the parameter list of existing functions without requiring any change in the calling argument lists already in place within a program.

A. extend B. shorten C. improve the accuracy of D. eliminate

Computer Science & Information Technology