The ________ selection in the Insert group on the Header & Footer Tools Design tab provides quick access to commonly used fields, such as Author and File Name

Fill in the blank(s) with correct word


Document Info

Computer Science & Information Technology

You might also like to view...

What is the printout of the following code?

``` #include using namespace std; class Count { public: int count; Count(int c) { count = c; } Count() { count = 0; } }; void increment(Count c, int ×) { c.count++; times++; } int main() { Count myCount; int times = 0; for (int i = 0; i < 100; i++) increment(myCount, times); cout << "myCount.count is " << myCount.count; cout << " times is " << times; return 0; } ``` a. myCount.count is 100 times is 0 b. myCount.count is 100 times is 100 c. myCount.count is 0 times is 0 d. myCount.count is 0 times is 100

Computer Science & Information Technology

A(n) ________ chart is used to show continuous data over time

Fill in the blank(s) with correct word

Computer Science & Information Technology

The super user account in Windows is called root.

True False

Computer Science & Information Technology

Brief or short message text is more likely to be read than lengthy text.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology