SASInstitute SAS Base Programming for SAS 9 (A00-211日本語版) - A00-211日本語무료 덤프문제 풀어보기



정답: A



정답: C

x = 3; y = 2; z = x ** y; run;

정답: D

data newstaff;
set staff;
start_date = today();
run;

정답: A



정답: A

data work.new;
length word $7;
amount = 4;
it amount = 4 then word = 'FOUR';
else if amount = 7
then word = 'SEVEN';
else word = 'NONE!!!';
amount = 7;
run;

정답: A



정답: B




정답: C

정답: C



정답: A

----I----1 0---I----20---I----30
Ruth 39 11
Jose 32 22
Sue 30 33
John 40 44

data test;
infile 'employee';
input employee_name $ 1-4;
if employee_name = 'Ruth' then input idnum 10-11;
else input age 7-8;
run;

정답: D



정답: B