Multiple choice technology programming languages

Which ODS command closes the HTML file

  1. ODS HTML; CLOSE;

  2. ODS HTML CLOSE;

  3. ODS; HTML CLOSE;

  4. ODS CLOSE HTML;

Reveal answer Fill a bubble to check yourself
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.