Monday, June 17, 2013

Base SAS Certification Sample Question 16.1

I hope the below Base SAS Certification sample question is helpful to you when you're studying for the exam. Leave your answer as a comment below and good luck!

-SAS Cert

************************


Which of the following is standard data that may be read with either column input or formatted input?

a) $1000
b) 10/3/2012
c) 10%
d) -1.54E-3

Monday, June 10, 2013

Base SAS Certification Sample Question 15.1

I hope the below Base SAS Certification sample question is helpful to you when you're studying for the exam. Leave your answer as a comment below and good luck!

-SAS Cert

******************************


Which of the following is an invalid way to list array elements?

a) _NUMERIC_
b) _CHARACTER_
c) _ALL_
d) None of the above

Sunday, June 2, 2013

Base SAS Certification Sample Question 14.1

I hope the below Base SAS Certification sample question is helpful to you when you're studying for the exam. Leave your answer as a comment below and good luck!

-SAS Cert

*******************************

How many variables/observations will come from the below program?


data work.roth_ira;
     start = 1000;
     do year = 1 to 30;
          savings + 5000;
          do month = 1 to 12;
               int = savings * (.05/12);
               savings + int;
          end;
          output;
     end;
run;


a) 4 variables, 12 observations
b) 4 variables, 30 observations
c) 5 variables, 12 observations
d) 5 variables, 30 observations