SAS Base Programming for SAS 9 Free Practice Exam Questions
38 real SAS Base Programming for SAS 9 exam questions with answers and AI explanations. SAS Institute certification prep — page 2 of 4.
- Question 14: Given the raw data file EMPLOYEE: ----I----1 0---I----20---I----30 Ruth 39 11 - Jose 32 22 - Sue 30 33 - John 40 44 - The following SAS program is submitted: d…
- Question 17: The SAS data set BANKS is listed below: BANKS - name rate FirstCapital 0.0718 - DirectBank 0.0721 - VirtualDirect 0.0728 - The following SAS program is submitt…
- Question 18: A raw data record is listed below: --------10-------20-------30 1999/10/25 The following SAS program is submitted: data projectduration; infile 'file-specifica…
- Question 19: The following SAS program is submitted: data work.test; Author = 'Agatha Christie'; First = substr(scan(author,1,' ,'),1,1); run; Which one of the following is…
- Question 20: The following SAS program is submitted: data one; date = 04juI2005d; format date weekdate.; run; proc print data = one; run; What output is generated?
- Question 21: Given the SAS data set PEPM.STUDENTS: PERM.STUDENTS NAME AGE - --------- ------ Alfred 14 Alice13 - Barbara13 - Carol14 - The following SAS program is submitte…
- Question 22: The contents of the raw data file SIZE are listed below: --------10-------20-------30 72 95 The following SAS program is submitted: data test; infile 'size'; i…
- Question 23: Unless specified, which variables and data values are used to calculate statistics in the MEANS procedure?
- Question 24: A raw data file is listed below: RANCH,1250,2,1,Sheppard Avenue,"$64,000" SPLIT,1190,1,1,Rand Street,"$65,850" CONDO,1400,2,1.5,Market Street,"80,050" TWOSTORY…
- Question 25: The following SAS program is submitted: data work.january; set work.allmonths (keep = product month num_sold cost); if month = 'Jan' then output work.january;…