A00-212 試験問題を無料オンラインアクセス

試験コード:A00-212
試験名称:SAS Advanced Programming Exam for SAS 9
認定資格:SASInstitute
無料問題数:185
更新日:2025-08-26
評価
100%

問題 1

Which one of the following statements is true?

問題 2

The following SAS program is submitted:
% let a = cat;
% macro animal(a = frog);
% let a = bird;
% mend;
% animal(a = pig)
% put a is &a;
Which one of the following is written to the SAS log?

問題 3

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?

問題 4

The following SAS program is submitted:
data temp;
length 1 b 3 x;
infile 'file reference';
input a b x;
run;
What is the result?

問題 5

Given the following SAS data sets ONE and TWO:
ONE TWO
NUM CHAR1 NUM CHAR2
1 A 2 X
2 B 3 Y
4 D 5 V
The following SAS program is submitted creating the output table THREE:
data three;
set one two;
run;
THREE
NUM CHAR1 CHAR2
1 A
2 B
4 D
2 X
3 Y
5 V
Which one of the following SQL programs creates an equivalent SAS data set THREE?

コメントを追加

あなたのメールアドレスが公開されることはありません。個人情報に関する内容は隠されます *

insert code
画面にある文字を入力してください。