Quiz:
Producing
HTML Output
Select the best answer for each question and click Score My Quiz.
-
ODS creates links to your output
in the Results window and identifies output objects by icons. If you
create both listing and HTML output for the same procedure...
-
When you direct output from multiple
procedures to the same HTML file...
-
What is the purpose of closing
the Listing destination in the code shown below?
ods listing close;
ods html ... ;
-
When the code shown below is run,
what will the file D:\Output\body.html
contain?
ods html body='d:\output\body.html';
proc print data=work.alpha;
run;
proc print data=work.beta;
run;
ods html close;
-
When the code shown below is run,
what file will be loaded by the links in D:\Output\contents.html?
ods html body='d:\output\body.html'
contents='d:\output\contents.html'
frame='d:\output\frame.html';
-
The table of contents created
by the CONTENTS= option contains a numbered heading for...
-
When the code shown below is run,
what will the file D:\Output\frame.html
display?
ods html body='d:\output\body.html'
contents='d:\output\contents.html'
frame='d:\output\frame.html';
-
What is the purpose of the URL=
suboptions shown below?
ods html body='d:\output\body.html' (url='body.html')
contents='d:\output\contents.html' (url='contents.html')
frame='d:\output\frame.html';
-
Which ODS HTML option was used
in creating the following table?
Obs |
ID |
Name |
Sex |
Age |
Height |
Weight |
1 |
2458 |
Murray, W |
M |
27 |
72 |
168 |
2 |
2462 |
Almers, C |
F |
34 |
66 |
152 |
3 |
2501 |
Bonaventure,
T |
F |
31 |
61 |
123 |
4 |
2523 |
Johnson, R |
F |
43 |
63 |
137 |
-
What is the purpose of the PATH=
option?
ods html path='d:\output' (url=none)
body='body.html'
contents='contents.html'
frame='frame.html';
|