SAS_Institute
A00-280 · Question #45
A00-280 Question #45: Real Exam Question with Answer & Explanation
Sign in or unlock A00-280 to reveal the answer and full explanation for question #45. The question stem and answer options stay visible for context.
Question
Given the following data set WORK.DM:
subject ge sex race cbp
001 24 M WH YES
002 53 F BL YES
003 36 F AS NO
004 57 M BL YES
005 25 F WH YES
006 80 F MU NA
Note: cbp = Child Bearing Potential
The following SAS program is submitted:
data null;
set WORK.DM ;
if sex = "M" and cbp eq "NA" then put "CHECK: " subject= sex= cbp= ;
else if sex = "F" and cbp eq "NA" then put "CHECK: " subject= sex= cbp= ;
run ;
Which subjects will appear in the LOG file?
Options
- A001 and 004
- B003 and 006
- C003 and 004
- D004 and 006
Unlock A00-280 to see the answer
You've previewed enough free A00-280 questions. Unlock A00-280 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.