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
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)- A4% (1)
- B17% (4)
- C75% (18)
- D4% (1)
Community Discussion
No community discussion yet for this question.
