SAS Certified Base Programmer 50 Questions (48)
The following SAS program is submitted:
proc report data=survey nowd; column age choice1; <insert DEFINE statement here> define choice1/display; run;
Which one of the following DEFINE statements completes the program and displays values of the variable Age in ascending order?
a. define age/sort;
b. define age/order;
c. define age/sort by age;
d. define age/order by age;
Topics:
SAS Base Questions |
1 Comment »
B