Which of the following is not checked by the Document Inspector?
A) Spelling
B) Comments
C) Document Properties
D) Watermarks
A
You might also like to view...
The ____ data type allows an element to contain any text string.
A. pcdata B. text C. alpha D. string
Researchers have known for decades that documents with visual elements are more effective than those that consist of only text.
Answer the following statement true (T) or false (F)
To modify the left indent on a block of text, use the ____ panel.
A. Character B. Paragraph C. Preferences D. Paragraph Styles
List the contents of both queues with the front of the queue leftmost.
Given two initially empty queues, queue1 and queue2 and the following commands. queue1.enqueue(4) queue1.enqueue(3) queue2.enqueue(7) queue1.enqueue(6) queue1.dequeue() queue1.enqueue(queue2.peekFront()) queue2.enqueue(queue1.peekFront()) queue1.dequeue() queue2.enqueue(7)