A00-211 Web TestEngine demo

Exit VCEDump A00-211 SAS Base Programming for SAS 9
Question 41 of 41
0% complete
Q41 Single choice

Given the following data set WORK.TOYS:

Question 41 diagram

The following SAS program s submitted:

data WORK.GROUPS;
set WORK.TOYS;
if Product="Cards" then Group_Desc="Indoors";
else if Product in ("Drum", "Recorder") then Group_Desc="Instruments";
else if Product="Ball" then Group_Desc="Outdoors";
run;
proc print data=WORK.GROUPS noobs;
run;

Which output is produced?

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in