Free SASInstitute A00-211日本語 Practice Test & Real Exam Questions

  • Exam Code/Number: A00-211日本語
  • Exam Name/Title: SAS Base Programming for SAS 9 (A00-211日本語版)
  • Certification Provider: SASInstitute
  • Corresponding Certification: SAS Institute Systems Certification
  • Exam Questions: 275
  • Updated On: Aug 13, 2026
Correct Answer: D Vote an answer

data revenue; set year_1; var1 = mdy(1,15,1960); run;
Correct Answer: B Vote an answer
Read the table


proc freq data = sales;
<insert TABLES statement here>
run;


Correct Answer: C Vote an answer

--------10-------20-------30
24613 $25.31

data inventory;
infile 'product';
input idnum 5. @10 price;
run;
Correct Answer: A Vote an answer

WORK.AWARDS FNAMEPOINTSMONTH
Amy24 Amy17 Gerard33 Wang33 Wang112 Wang18

proc sort data = work.awards;
by descending fname points;
run;
Correct Answer: D Vote an answer

Data WORK.COMPRESS;
ID = '1968 05-10 567';
NewID = compress (ID, "-");
run;
Correct Answer: C Vote an answer

data work.clients;
calls = 6;
do while (calls le 6);
calls + 1;
end;
run;
Correct Answer: C Vote an answer

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' then
input sqfeet bedrooms baths street $ price : dollar10.;
run;
Correct Answer: B Vote an answer


Correct Answer: A Vote an answer

proc print data = pets;
var type breed;
sum number;
run;
Correct Answer: D Vote an answer

proc format
value score 1 - 50 = 'Fail'
51 - 100 = 'Pass';
run;
proc report data = work.courses nowd;
column exam;
define exam / display format = score.;
run;
Correct Answer: A Vote an answer

data work.report;
set work.sales_info;
if qtr(sales_date) ge 3;
run;
Correct Answer: C Vote an answer

proc sort data = sasuser.houses out = houses;
by style;
run;
proc print data = houses;
run;

style bedrooms baths price
CONDO 2 1.5 80050
3 2.5 79350
4 2.5 127150
2 2.0 110700 RANCH 2 1.0 64000
3 3.0 86650
3 1.0 89100
1 1.0 34550 SPLIT 1 1.0 65850
4 3.0 94450
3 1.5 73650 TWOSTORY 4 3.0 107250
2 1.0 55850
2 1.0 69250
4 2.5 102950
Correct Answer: C Vote an answer

--------10-------20-------30
72 95

data test;
infile 'size';
input @1 height 2. @4 weight 2;
run;
Correct Answer: D Vote an answer


Correct Answer: A Vote an answer
Explanation: Only visible for Pass4Leader members. You can sign-up / login (it's free).