A00-212試験無料問題集「SASInstitute SAS Advanced Programming Exam for SAS 9 認定」

Which SAS integrity constraint type ensures that a specific set or range of values are the only values in a variable?

When is it appropriate to create indexes on a SAS data set for efficient processing?

Which SET statements option names a variable that contains the number of the observation to read during the
current iteration of the DATA step?

Given the data sets:

The following SAS program is submitted:

Which result set would be generated?

Given the SAS data sets shown on the left, the SAS program on the right is submitted.

What will be the result when this program is executed?

The following SAS FORMAT procedure is submitted:
proc format lib = sasuser;
value tempc low < 0 = 'BELOW FREEZING'
0 < 5 = 'COLD'
5 < 10 = 'MILD'
10 < 15 = 'WARM'
15 high = 'HOT';
run;
How is the value 10 displayed when the format TEMPC is applied?

Which one of the following options is available for SAS macro debugging?

The following SAS program is submitted:
data temp;
array points{3,2}_temporary_ (10,20,30,40,50,60);
score = points{2,1}
run;
Which one of the following is the value of the variable SCORE in the data set TEMP?

In the data step merge, the BY variables in all data sets must have the same:

解説: (GoShiken メンバーにのみ表示されます)
Following SAS program is submitted:
data temp(<insert option here>);
infile 'rawdata';
input x $ y z;
run;
RAWDATA is a file reference to an external file that is ordered by the variable X.
Which option specifies how the data in the SAS data set TEMP will be sorted?