SASInstitute SAS Base Programming for SAS 9 (A00-211日本語版) - A00-211日本語 Exam Practice Test


data combine; prefix='505'; middle='6465 '; end='09090'; <insert statement here>; run;
Correct Answer: B

proc contents data=_all_;
run;
Correct Answer: A


Correct Answer: D

data WORK.DATE_INFO;
Day="01" ;
Yr=1960 ;
X=mdy(Day,01,Yr) ;
run;
Correct Answer: B

libname company 'SAS-data-library';
proc sort data = company.payroll;
by EmployeeIDNumber;
run;
Correct Answer: B

RANCH,1250,2,1,Sheppard Avenue,"$64,000" SPLIT,1190,1,1,Rand Street,"$65,850" CONDO,1400,2,1.5,Market Street,"80,050"
TWOSTORY,1810,4,3,Garris Street,"$107,250"
RANCH,1500,3,3,Kemble Avenue,"$86,650"
SPLIT,1615,4,3,West Drive,"94,450"
SPLIT,1305,3,1.5,Graham Avenue,"$73,650"

data work.condo_ranch;
infile 'file-specification' dsd;
input style $ @;
if style = 'CONDO' or style = 'RANCH';
input sqfeet bedrooms baths street $ price : dollar10.;
run;
Correct Answer: A






Correct Answer: C

----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;
Correct Answer: A
Correct Answer: A