Wednesday, December 20, 2006

Base SAS 38

A raw data record is listed below: (Question updated: underscores means blank spaces)
--------10-------20-------30
Printing___750
The following SAS program is submitted:
data bonus;
infile 'file-specification';
input dept $ 1 - 11 number 13 - 15;

run;
Which one of the following SAS statements completes the program and results in a value of 'Printing750' for the DEPARTMENT
variable?
A. department = trim(dept) number;
B. department = dept input(number,3.);
C. department = trim(dept) || put(number,3.);
D. department = input(dept,11.) || input(number,3.);
Click Comment link to get answer

No comments:

Post a Comment