Case WD 1-1Cameron is collaborating on a document with several co-workers. Cameron needs to change the document to Compatibility Mode so that a co-worker can open and make changes to the document. Which file type should Cameron choose in the Save As dialog box?
A. XPS Document (*.xps)
B. PDF (*.pdf)
C. Word Document (*.docx)
D. Word 97-2003 Document (*.doc)
Answer: D
You might also like to view...
To cancel an entire entry before entering it into the cell, press the _____ key.
A. ALT B. ESC C. CTRL D. TAB
____ charts are also used to illustrate a company's market share in comparison to its competitors.
A. Column B. Bar C. Line D. Pie
Why is it necessary to run a program using test data for input?
a. To verify there are no syntax errors in the program. b. To verify that programming language elements are used correctly. c. To verify the application produces correct results. d. To see if the flowchart is correct.
Answer the following statements true (T) or false (F)
1. The following statement could be used to set the Filter property of the OpenFileDialog control so that it displays files with the .txt extension. Text Files (*txt)|*.txt 2. To get rid of an existing closed file, execute a statement of the form IO.File.Delete(filespec). 3. Text files are updated by opening them for Input and then entering the new data. 4. The value of sr.EndOfStream is True when the end of file accessed by the StreamReader is reached. 5. The following code is valid. Dim filespec As String filespec = InputBox("Enter name of file to process:") Dim sr As IO.StreamReader = IO.File.OpenText(filespec)