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 4 of 4.

  1. Question 38: The following SAS program is submitted: footnote1 Sales Report for Last Month; footnote2 Selected Products Only; footnote3 All Regions; footnote4 All Figures i…
  2. Question 39: The following SAS program is submitted: data one; addressl = 214 London Way; run; data one; set one; address = tranwrd(address1, Way, Drive); run; What are the…
  3. Question 40: The following SAS program is submitted: data WORK.ONE; Text=Australia, US, Denmark; Pos=find(Text,US,i,5); run; What value will SAS assign to Pos?
  4. Question 41: The following SAS program is submitted: data WORK.DATE_INFO; X="01Jan1960" D; run; What variable X contains what value?
  5. Question 45: The following SAS program is submitted: data temp.x; set sasuser.y; run; What must be submitted prior to this SAS program for the program to execute successful…
  6. Question 53: The following SAS program is submitted: proc sort data=SASUSER.PROJECTS out=PSORT; by Product Code descending Date Cost; run; Which of the following is true co…
  7. Question 57: Which statement specifies that records 1 through 10 are to be read from the raw data file customer.txt?
  8. Question 58: The following SAS program is submitted: data work.sets; do until (prod gt 6); prod + 1; end; run; What is the value of the variable PROD in the output data set?