Question 136
The following SAS program is submitted:
data work.staff;
JobCategory = 'FA';
JobLevel = '1';
JobCategory = JobCategory || JobLevel;
run;
Which one of the following is the value of the variable JOBCATEGORY in the output data set?
Question 137
This question will ask you to provide a missing format:
Given the contents of the raw data file 'EMPLOYEE.TXT'
Which SAS information correctly completes the program?
Question 138
The following SAS program is submitted:
data work.month;
date = put('13mar2000'd,ddmmyy10.);
run;
Which one of the following represents the type and length of the variable DATE in the output data set?
Question 139
The following SAS program is submitted:
data work.staff;
JobCategory = 'FA';
JobLevel = '1'; JobCategory = JobCategory || JobLevel; run;
Which one of the following is the value of the variable JOBCATEGORY in the output data set?
Question 140
The following SAS program is submitted:
data _null_;
set old (keep = prod sales1 sales2);
file 'file-specification';
put sales1 sales2;
run;
Which one of the following default delimiters separates the fields in the raw data file created?
