nerdexam
SAS_Institute

A00-201 · Question #99

The following SAS program is submitted: proc report data = work.houses nowd; column style price; where price < 100000; <insert DEFINE statements here> title; run; Click the Exhibit button to view…

The correct answer is D. define style / order width = 9; define price / sum format = comma9. width = 10. See the full explanation below for the reasoning.

Question

The following SAS program is submitted: proc report data = work.houses nowd; column style price; where price < 100000; <insert DEFINE statements here> title; run; Click the Exhibit button to view the output from the REPORT procedure. Assume permanent variable labels have been assigned. Which one of the following completes the program and produces the output displayed in the exhibit? style price CONDO 80,050 79,360 RANCH 64,200 66,650 69,100 SPLIT 64,550 65,550 94,450 TWOSTORY 73,650 85,850 69,250

Options

  • Adefine style / display width = 9; define price / sum format = comma9. width = 10;
  • Bdefine style / width = 9; define price / sum format = comma9. width = 10;
  • Cdefine style / group width = 9; define price / sum format = comma9. width = 10;
  • Ddefine style / order width = 9; define price / sum format = comma9. width = 10;

How the community answered

(20 responses)
  • A
    20% (4)
  • B
    5% (1)
  • C
    5% (1)
  • D
    70% (14)

Community Discussion

No community discussion yet for this question.

Full A00-201 Practice