SAS Base Programming for SAS (r) 9 Exam (A00-211) - SASI Exam Questions
Last updated on June 20, 2026
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
data WORK.NEW;
set WORK.OLD;
Count+1;
run;
The varaible Count is created using a sum statement. Which statement regarding this variable is true?
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Data WORK.COMPRESS;
ID = ‘1968 05-10 567’;
NewID = compress (ID, “
-“);
run;
What will the value of NewID be in the WORK.COMPRESS data set?
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
data allobs;
set sasdata.origin (firstobs = 75 obs = 499);
run;
The SAS data set SASDATA.ORIGIN contains 1000 observations.
How many observations does the ALLOBS data set contain?
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.

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”;
proc print data=WORK.GROUPS noobs;
Which output is produced?
run;
run;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Finish Practice?
Are you sure you want to finish? This will end your practice session.