71.Which one of the following SAS REPORT procedure options controls how column
headings are displayed over multiple lines?
a. SPACE=
幼儿园家委会美篇b. SPLIT=
c. LABEL=
d. BREAK=
Answer: B
72. Which one of the following SAS DATA steps saves the temporary data t named
MYDATA as a permanent data t?
A. libname sasdata 'SAS-data-library';
data;
copy mydata;
run;
B. libname sasdata 'SAS-data-library';
data;
keep mydata;
巴西非勒run;
C. libname sasdata 'SAS-data-library';
data;
save mydata;
run;
D. libname sasdata 'SAS-data-library';
data;
t mydata;
run;
Answer: D
73. The SAS data t named COMPANY.PRICES is listed below:
COMPANY.PRICES
prodidprice producttype sales returns
孝是什么K12S 5.10 NETWORK 15 2
B132S 2.34 HARDWARE 300 10
R18KY2 1.29 SOFTWARE 25 5
3KL8BY 6.37 HARDWARE 125 15
DY65DW 5.60 HARDWARE 45 5
DGTY23 4.55 HARDWARE 67 2
The following SAS program is submitted:
libnamecompany 'SAS-data-library';
data hware inter soft;
t company.prices (keep = producttype price);
if price le 5.00;
if producttype = 'HARDWARE' then output HWARE;
el if producttype = 'NETWORK' then output INTER;
反腐倡廉心得el if producttype = 'SOFTWARE' then output SOFT;
run;
How many obrvations does the HWARE data t contain?
A. 0
B. 2
C. 4
D. 6
Answer: B
74. The following SAS program is submitted:
st;
t work.staff (keep = jansales febsales marsales);
array diff_sales{3} difsales1 - difsales3;
A00-201
- The Power of Knowing
array monthly{3} jansales febsales marsales;
run;
Which one of the following reprents the new variables that are created?
A. JANSALES, FEBSALES and MARSALES
B. MONTHLY1, MONTHLY2 and MONTHLY3
C. DIFSALES1, DIFSALES2 and DIFSALES3
D. DIFF_SALES1, DIFF_SALES2 and DIFF_SALES3
Answer: C
75. The following SAS DATA step is submitted:
data work.accountting;
t work.department;
length jobcode$ 12;
run;
The WORK.DEPARTMENT SAS data t contains a character variable named
JOBCODE with a length of 5.
Which one of the following is the length of the variable JOBCODE in the output
data t?
A. 5
B. 8
悲伤的成语
C. 12
D. The length can not be determined as the program fails to execute due to errors.
Answer: A
76. The following SAS program is submitted:
proc freq data=sales;
<inrt TABLES statement here>
run:
Exhibit: output from the FREQ procedure.
Which one of the following statements completes the program and produces the
情商怎么提高
output?
A. tables region product;
B. tables region* product;
C. tables product region;
D. tables product region*;
Answer: B
77. The following SAS program is submitted:
proc format;
value score 1 - 50 = 'Fail'
51-100='Pass';
run;
proc report data=work .cours nowd;
column exam;
define exam / display format=score.;
run;
The variable EXAM has a value of 50.5.
How will the EXAM variable value be displayed in the REPORT procedure output?
A. Fail
B. Pass
C. 50.5
D. . (missing numeric value)
Answer: C
78. The following SAS program is submitted:
<inrt ODS statement here>射足
proc means data= sasur .shoes;
where product in ('sandal' , 'Slipper' , 'Boot');
run;
Which one of the following ODS statements completes the program and nds the
report to an HTML file?大蘑菇
A. ods html = 'sales .html';
B. ods file='sales .html';
C. ods file html='sales .html';
D. ods html file='sales. html';
Answer: D
79. The following SAS program is submitted:
libnamesasdata 'SAS-data-library';
data t;
t sasdata .chemists;