Select the best answer
for each question. Check your answers using the answer key in the
appendix.
-
Using ODS statements,
how many types of output can you generate at once?
-
If ODS is set to its
default settings, what types of output are created by the following
code?
ods html file='c:\myhtml.htm';
ods pdf file='c:\mypdf.pdf';
-
-
-
-
No output is created
because ODS is closed by default.
-
What is the purpose
of closing the HTML destination in the following code?
ods HTML close;
ods pdf ... ;
-
It conserves system
resources.
-
It simplifies your program.
-
It makes your program compatible with other hardware ...