SAS Advanced Programming for SAS 9 Free Practice Exam Questions

7 real SAS Advanced Programming for SAS 9 exam questions with answers and AI explanations. SAS Institute certification prep — page 1 of 1.

  1. Question 17: Which title statement would always display current date?
  2. Question 22: The SAS set WORK CHECK has an index on the variable Code and the following SAS program is submitted. proc sort data=WORK.CHECK; by Code; run; What describes th…
  3. Question 23: A data set stored on a network drive has the following characteristics: ✑ 14 Million observations ✑ 400 numeric variables ✑ 0 character variables of length 20…
  4. Question 26: Which SAS produce can be used to report Page Size?
  5. Question 31: Given the following SAS data set ONE: ONE - REP COST - SMITH 200 - SMITH 400 - JONES 100 - SMITH 600 - JONES 100 - JONES 200 - JONES 400 - SMITH 800 - JONES 10…
  6. Question 32: Given the following SAS data set ONE: ONE - LEVEL AGE - 1 10 2 20 3 20 2 10 1 10 2 30 3 10 2 20 3 30 1 10 The following SAS program is submitted: proc sql; sel…
  7. Question 33: The following SAS program is submitted: %let a=cat; %macro animal(a=frog); %let a=bird; %mend; %animal(a=pig) %put a is &a What is written to the SAS log?