Question:27ThecontentsoftherawdatafileEMPLOYEEarelistedbelow:
--------10-------20-------30
Ruth3911
Jose3222
Sue3033
John4044
ThefollowingSASprogramissubmitted:
datatest;
infile'employee';
inputemployee_name$1-4;
ifemployee_name='Sue'theninputage7-8;
elseinputidnum10-11;
run;
WhichoneofthefollowingvaluesdoesthevariableAGEcontainwhenthenameoftheemployeeis"Sue"?
1.30
2.Get all Questions and Answer from here
3.You need to have paid subscription to access all questions
4.Thanks for considering Python Certification Material
CorrectAnswer:4
Answershouldbe4(missing);questiontalksaboutwhentheconditonis"sue"andnottheprogramoutput
Togetthecorrectresult
datatest;
infileemployee;
You can access to full explanation to question and answer from this page.