nerdexam
SAS_Institute

A00-211 · Question #153

The following SAS program is submitted: <insert ODS statement here> proc means data = sasuser.shoes; where product in (Sandal' , Slipper' , `Boot'); run; <insert ODS statement here> Which ODS…

The correct answer is D. ods html file = `sales.html'; ods html close. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

<insert ODS statement here> proc means data = sasuser.shoes; where product in (Sandal' , Slipper' , `Boot'); run; <insert ODS statement here> Which ODS statements complete the program and send the report to an HTML file?

Options

  • Aods html = `sales.html'; ods html close;
  • Bods file = `sales.html'; ods file close;
  • Cods file html = `sales.html'; ods file close;
  • Dods html file = `sales.html'; ods html close;

How the community answered

(56 responses)
  • A
    4% (2)
  • B
    7% (4)
  • C
    14% (8)
  • D
    75% (42)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice