SAS_Institute
A00-201 · Question #5
A value for the variable JOBCODE is listed below: JOBCODE CHEM3 Which one of the following values does the variable DESCRIPTION contain? libname sasdata 'SAS-data-library'; data test; set…
The correct answer is B. Unknown. See the full explanation below for the reasoning.
Question
A value for the variable JOBCODE is listed below:
JOBCODE
CHEM3
Which one of the following values does the variable DESCRIPTION contain?
libname sasdata 'SAS-data-library';
data test;
set sasdata.chemists;
if jobcode = 'chem3'
then description = 'Senior Chemist';
else description = 'Unknown';
run;
Options
- Achem3
- BUnknown
- CSenior Chemist
- D. (missing character value)
How the community answered
(21 responses)- A5% (1)
- B81% (17)
- C10% (2)
- D5% (1)
Community Discussion
No community discussion yet for this question.