SASInstitute SAS Base Programming for SAS 9 (A00-211日本語版) - A00-211日本語 FREE EXAM DUMPS QUESTIONS & ANSWERS


proc contents data=_all_;
run;
Correct Answer: D Vote an answer

data allobs;
set sasdata.origin (firstobs = 75 obs = 499);
run;
Correct Answer: B Vote an answer

WORK.AWARDS FNAMEPOINTSMONTH
Amy24 Amy17 Gerard33 Wang33 Wang112 Wang18

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

data WORK.PRODUCTS;
Prod=1;
do while (Prod LE 7);
Prod + 1;
end;
run;
Correct Answer: C Vote an answer

proc sort data = sasuser.houses out = report;
by style;
run;
Correct Answer: B Vote an answer


Correct Answer: A Vote an answer
After a SAS program is submitted, the following is written to the SAS log:
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;
------
22
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: D Vote an answer


Correct Answer: B Vote an answer

data work.test;
Author = 'Agatha Christie';
First = substr(scan(author,1,' ,'),1,1);
run;
Correct Answer: B Vote an answer

PERM.STUDENTS NAMEAGE ---------------- Alfred14 Alice13 Barbara13
Carol14

libname perm 'SAS data library';
data students;
set perm.students;
file 'file specification';
put name $ age;
<insert statement here>
run;
The following double-spaced file is desired as output
Alfred 14
Alice 13
Barbara 13
Carol 14
Correct Answer: C Vote an answer




Correct Answer:
Pending

proc freq data = WORK.SALES;
<insert code here>
run;


Correct Answer: B Vote an answer

footnote1 'Sales Report for Last Month';
footnote2 'Selected Products Only';
footnote3 'All Regions';
footnote4 'All Figures in Thousands of Dollars';
proc print data = sasuser.shoes;
footnote2 'All Products';
run;
Correct Answer: A Vote an answer

----I---- 10---I----20---I----30
$1,234

data test;
infile 'amount';
input@1 salary 6.;
if_error_then description = 'Problems';
else description = 'No Problems';
run;
Correct Answer: A Vote an answer
0
0
0
10