SAS Certification Questions
Collection of Practice questions and Answers for SAS Certification...
Wednesday, January 27, 2010
Q30
›
The following SAS program is submitted: data work.total; set work.salary(keep = department wagerate); by department; if first.departmen...
69 comments:
Q29
›
The following SAS program is submitted: libname sasdata 'SAS-data-library'; data test; set sasdata.chemists (keep = job_code); ...
29 comments:
Q28
›
The following SAS program is submitted: data work.accounting; set work.dept1 work.dept2; run; A character variable named JOBCODE is co...
23 comments:
Q27
›
The following SAS DATA step is submitted: data work.accounting; set work.department; length jobcode $ 12; run; The WORK.DEPARTMENT SA...
13 comments:
Q26
›
Which one of the following SAS statements renames two variables? A. set work.dept1 work.dept2(rename = (jcode = jobcode) (sal = salary)); ...
18 comments:
Q25
›
The following SAS program is submitted: data work.company; set work.dept1(keep = jobcode) work.dept2(rename = (jcode = jobcode)); run; ...
15 comments:
Q24
›
The following SAS program is submitted: data work.passengers; if OrigPassengers = . then OrigPassengers = 100; TransPassengers = 100; O...
17 comments:
Q23
›
The following SAS program is submitted: data work.passengers; if OrigPassengers = . then OrigPassengers = 100; TransPassengers = 100; Or...
11 comments:
Q22
›
The following SAS program is submitted: data work.staff; JobCategory = 'FA'; JobLevel = '1'; JobCategory = JobCategory ...
69 comments:
›
Home
View web version