好文档 - 专业文书写作范文服务资料分享网站

SAS-base-考试必备-70真题(附答案)

天下 分享 时间: 加入收藏 我要投稿 点赞

1.The following SAS program is submitted:

data WORK.TOTAL; set WORK.SALARY; by Department Gender;

if First.<_insert_code_> then Payroll=0; Payroll+Wagerate;

if Last.<_insert_code_>; run;

The SAS data set WORK.SALARY is currently ordered by Gender within Department.

Which inserted code will accumulate subtotals for each Gender within Department? A. Gender

B. Department

C. Gender Department D. Department Gender

Answer: A

-------------------------------------

2.Given the following raw data records in TEXTFILE.TXT:

----|----10---|----20---|----30 John,FEB,13,25,14,27,Final

John,MAR,26,17,29,11,23,Current Tina,FEB,15,18,12,13,Final

Tina,MAR,29,14,19,27,20,Current

The following output is desired:

Obs Name Month Status Week1 Week2 Week3 Week4 Week5

1 John FEB Final $13 $25 $14 $27 . 2 John MAR Current $26 $17 $29 $11 $23 3 Tina FEB Final $15 $18 $12 $13 . 4 Tina MAR Current $29 $14 $19 $27 $20

Which SAS program correctly produces the desired output?

A.

data WORK.NUMBERS;

length Name $ 4 Month $ 3 Status $ 7; infile 'TEXTFILE.TXT' dsd;

input Name $ Month $;

if Month='FEB' then input Week1 Week2 Week3 Week4 Status $;

else if Month='MAR' then input Week1 Week2 Week3 Week4 Week5 Status $; format Week1-Week5 dollar6.; run;

proc print data=WORK.NUMBERS; run;

B.

data WORK.NUMBERS;

length Name $ 4 Month $ 3 Status $ 7; infile 'TEXTFILE.TXT' dlm=',' missover; input Name $ Month $;

if Month='FEB' then input Week1 Week2 Week3 Week4 Status $;

else if Month='MAR' then input Week1 Week2 Week3 Week4 Week5 Status $; format Week1-Week5 dollar6.; run;

proc print data=WORK.NUMBERS; run;

C.

data WORK.NUMBERS;

length Name $ 4 Month $ 3 Status $ 7; infile 'TEXTFILE.TXT' dlm=','; input Name $ Month $ @;

if Month='FEB' then input Week1 Week2 Week3 Week4 Status $;

else if Month='MAR' then input Week1 Week2 Week3 Week4 Week5 Status $; format Week1-Week5 dollar6.; run;

proc print data=WORK.NUMBERS; run;

D.

data WORK.NUMBERS;

length Name $ 4 Month $ 3 Status $ 7; infile 'TEXTFILE.TXT' dsd @; input Name $ Month $;

if Month='FEB' then input Week1 Week2 Week3 Week4 Status $;

else if Month='MAR' then input Week1 Week2 Week3 Week4 Week5 Status $; format Week1-Week5 dollar6.; run;

proc print data=WORK.NUMBERS; run;

Answer: C

-------------------------------------

3.The Excel workbook REGIONS.XLS contains the following four worksheets: EAST WEST NORTH SOUTH

The following program is submitted:

libname MYXLS 'regions.xls';

Which PROC PRINT step correctly displays the NORTH worksheet? A. proc print data=MYXLS.NORTH;run; B. proc print data=MYXLS.NORTH$;run; C. proc print data=MYXLS.'NORTH'e;run; D. proc print data=MYXLS.'NORTH$'n;run;

Answer: D

-------------------------------------

4.The following SAS program is submitted:

data WORK.DATE_INFO; Day=\ Yr=1960 ;

X=mdy(Day,01,Yr) ; run;

What is the value of the variable X? A. the numeric value 0

B. the character value \ C. a missing value due to syntax errors

D. the step will not compile because of the character argument in the mdy function.

Answer: A

-------------------------------------

5.Which statement specifies that records 1 through 10 are to be read from the raw data file customer.txt?

A. infile 'customer.txt' 1-10; B. input 'customer.txt' stop@10; C. infile 'customer.txt' obs=10; D. input 'customer.txt' stop=10;

Answer: C

-------------------------------------

6.After a SAS program is submitted, the following is written to the SAS log:

101 data WORK.JANUARY;

102 set WORK.ALLYEAR(keep=product month num_Sold Cost); 103 if Month='Jan' then output WORK.JANUARY; 104 Sales=Cost * Num_Sold; 105 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, ^=, |, ||, ~=. 106 run;

What changes should be made to the KEEP statement to correct the errors in the LOG?

A. keep=(Product Sales); B. keep Product, Sales; C. keep=Product, Sales; D. keep Product Sales;

Answer: D

-------------------------------------

7.Which of the following choices is an unacceptable ODS destination for producing output that can be viewed in Microsoft Excel?

A. MSOFFICE2K B. EXCELXP C. CSVALL D. WINXP

Answer: D

-------------------------------------

8.The SAS data set named WORK.SALARY contains 10 observations for each department,and is currently ordered by Department. The following SAS program is submitted:

data WORK.TOTAL;

set WORK.SALARY(keep=Department MonthlyWageRate); by Department;

if First.Department=1 then Payroll=0; Payroll+(MonthlyWageRate*12); if Last.Department=1; run;

Which statement is true?

A. The by statement in the DATA step causes a syntax error.

B. The statement Payroll+(MonthlyWageRate*12); in the data step causes a syntax error.

C. The values of the variable Payroll represent the monthly total for each department in the WORK.SALARY data set.

D. The values of the variable Payroll represent a monthly total for all values of WAGERATE in the WORK.SALARY data set.

Answer: C

-------------------------------------

10.The following SAS program is submitted:

data WORK.RETAIL; Cost='$20,000';

Discount=.10*Cost; run;

What is the result?

A. The value of the variable Discount in the output data set is 2000.No messages are written to the SAS log.

B. The value of the variable Discount in the output data set is 2000.A note that conversion has taken place is written to the SAS log.

C. The value of the variable Discount in the output data set is missing. A note in the SAS log refers to invalid numeric data.

D. The variable Discount in the output data set is set to zero.No messages are written to the SAS log.

Answer: C 因为有一个$符号 -------------------------------------

11.Given the existing SAS program:

proc format;

SAS-base-考试必备-70真题(附答案)

1.ThefollowingSASprogramissubmitted:dataWORK.TOTAL;setWORK.SALARY;byDepartmentGender;ifFirst.thenPayroll=0;Payroll+Wagerate;
推荐度:
点击下载文档文档为doc格式
0uxir5cd36208bj78dnx
领取福利

微信扫码领取福利

微信扫码分享