Multiple choice technology programming languages

Which is the correct statement: a.) ODS HTML FILE = ‘file’; b.) ODS FILE HTML = ‘file’ c.) ODS FILE = ‘file’ d.) ODS HTML = ‘file’

  1. c

  2. b

  3. a

  4. d

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The correct SAS syntax is 'ODS HTML FILE='file';' which specifies that HTML output should be written to a file. Option A shows this correct syntax. Option B reverses the order, Option C is incomplete, and Option D doesn't specify the file destination.