READ Free Dumps For SAS Institute- A00-211
Question ID 20386 | Which step sorts the observations of a permanent SAS data set by two variables and stores the sorted observations in a temporary SAS data set? |
Option A | proc sort data=SASUSER.EMPLOYEES out=EMPSORT; |
Option B | proc sort data=SASUSER.EMPLOYEES out=EMPSORT; |
Option C | proc sort data=SASUSER.EMPLOYEES out=TEMPORARY.EMPSORT; by Lname, Fname; |
Option D | proc sort data=SASUSER.EMPLOYEES out=TEMPORARY.EMPSORT; by Lname Fname; |
Correct Answer | B |
Question ID 20387 | Consider the following data step: In filtering the values of the variable X in data set WORK.OLD, what new value would be assigned to X if its original value was a missing value? |
Option A | X would get a value of 1. |
Option B | X would get a value of 3. |
Option C | X would retain its original value of missing. |
Option D | This step does not run because of syntax errors. |
Correct Answer | A |