SAS_Institute
A00-280 · Question #91
The following SAS program is submitted: data WORK.TEST; set WORK.WGTCODE; if Subjcode='WGT2' then Description='Over'; else Description='Unknown'; run; If the value for the variable Subjcode is…
The correct answer is B. Unknown. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data WORK.TEST;
set WORK.WGTCODE;
if Subjcode='WGT2' then Description='Over';
else Description='Unknown';
run;
If the value for the variable Subjcode is "WGT2", what is the value of the variable Description?
Options
- Amissing character value
- BUnknown
- COver
- DWgt2
How the community answered
(43 responses)- A7% (3)
- B79% (34)
- C2% (1)
- D12% (5)
Community Discussion
No community discussion yet for this question.