Which ODS command closes the HTML file
-
ODS HTML; CLOSE;
-
ODS HTML CLOSE;
-
ODS; HTML CLOSE;
-
ODS CLOSE HTML;
B
Correct answer
Explanation
The correct syntax to close an HTML ODS destination is 'ODS HTML CLOSE;' This terminates the HTML output destination and closes any open files. Options A, C, and D have incorrect syntax placement or word order.