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



<e ip = "img_202.jpg"> </e>
Correct Answer: A Vote an answer


Correct Answer: D Vote an answer

proc freq data = class;
tables gender * age / <insert option here>;
run;
The following report is created:
The FREQ Procedure
Table of gender by age
Row Column
Gender ageFrequencyPercent Percent Percent
F11110.0020.0050.00
12220.0040.0040.00
13220.0040.0066.67
Total550.00100.00
M11110.0020.0050.00
12330.0060.0060,00
13110.0020.0033.33
Total550.00100.00
Total11220.00100.00
12550.00100.00
13330.00100.00
Total10100.00
Correct Answer: C Vote an answer

data test;
set chemists;
jobcode = 'Chem2'
then description = 'Senior Chemist';
else description = 'Unknown';
run;
The value for the variable JOBCODE is:
JOBCODE
chem2
Correct Answer: B Vote an answer


Correct Answer: D Vote an answer

data newstaff;
set staff;
start_date = today();
run;
Correct Answer: A Vote an answer






Correct Answer: C Vote an answer






Correct Answer: A Vote an answer


Correct Answer: D Vote an answer

data one;
infile 'file specification';
input num chars$;
run;
ONE
NUMCHAR
123 323 177

proc print data = one;
where char = 23;
run;
Correct Answer: C Vote an answer

data one;
addressl = '214 London Way';
run;
data one;
set one;
address = tranwrd(address1, 'Way', 'Drive'); run;
Correct Answer: C Vote an answer

105 data january;
106 set allmonths(keep = product month num_sold cost);
107 if month = 'Jan' then output january;
108 sales = cost * num_sold;
109 keep = product sales;
ERROR 22-322: Syntax error, expecting one of the following:!,
!!, &, *,**, +, -,/, <,< =, <>, =, >, ><, >=,
AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL,
NOTIN, OR,^=,|,II,
110 run;
Correct Answer: C Vote an answer

----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: B Vote an answer

data work.test;
First = 'Ipswich, England';
City_Country = substr(First,1,7)!!', '!!'England';
run;
Correct Answer: B Vote an answer

data sasdata.atlanta
sasdata.boston
work.portland
work.phoenix;
set company.prdsales;
if region = 'NE' then output boston;
if region = 'SE' then output atlanta;
if region = 'SW' then output phoenix;
if region = 'NW' then output portland;
run;
Correct Answer: C Vote an answer