It is a good idea to turn on ____ marks when you enter text in a document so that you can see blank spaces and paragraph marks.

A. editing
B. display
C. formatting
D. document


Answer: C

Computer Science & Information Technology

You might also like to view...

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

1. A static data structure can change in size as a program executes. 2. Dynamic allocation is the process of allocating new storage during program execution. 3. It is important to keep track of the value of the memory address stored in a pointer. 4. Storage is allocated for a pointer and the data that it points to at the same time. 5. If ptr is a pointer to an integer, then p = 1000 is a valid assignment.

Computer Science & Information Technology

Describe a recursive solution to determine whether a String object is a palindrome. You may assume that the string only contains lower case characters (i.e. no numbers, spaces, punctuation, etc). Hint: It may be easiest to describe your solution using pseudocode.

What will be an ideal response?

Computer Science & Information Technology

Given the definitions,

``` int *p1, *p2; p1 = new int; p2 = new int; ``` You are to compare and contrast the two assignments. ``` a) p1 = p2; b) *p1 = *p2 ``` What will be an ideal response?

Computer Science & Information Technology

If your report has a ________ section, it precedes the first Page Header section

A) Access Header B) Group Header C) Report Header D) Detail Header

Computer Science & Information Technology