nerdexam
SAS_Institute

A00-212 · Question #39

Given has SAS dataset ONE: The following SAS program is submitted: proc sql; <insert SQL clause here> from one; quit; The following output is desired: Which SQL procedure clause completes the…

The correct answer is C. select salary, salary * .10 label = 'BONUS'. See the full explanation below for the reasoning.

Question

Given has SAS dataset ONE:

The following SAS program is submitted:

proc sql; <insert SQL clause here> from one; quit; The following output is desired:

Which SQL procedure clause completes the program and generates the desired output?

Exhibit

A00-212 question #39 exhibit

Options

  • Aselect salary, salary * .10 var = BONUS
  • Bselect salary, salary * .10 name = 'BONUS'
  • Cselect salary, salary * .10 label = 'BONUS'
  • Dselect salary, salary * .10 column = 'BONUS'

How the community answered

(24 responses)
  • A
    4% (1)
  • B
    17% (4)
  • C
    75% (18)
  • D
    4% (1)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice