Top 19 Advanced Sas Interview Questions You Must Prepare 27.Jul.2024

Q1. Explain What Proc Glm Does?

Proc glm performs simple and multiple regression, analysis of variance (ANOVAL), analysis of covariance, multivariate analysis of variance and repeated measure analysis of variance.

Q2. Mention What Is The Difference Between Nodupkey And Nodup Options?

The difference between the NODUP and NODUPKEY is that, NODUP compares all the variables in our dataset while NODUPKEY compares just the BY variables.

Q3. What Are Automatic Variables For Macro?

Every time we invoke SAS, the macro processor automatically creates certain macro var.

eg: &sysdate, &sysday.

Q4. Explain What Is The Use Of Proc Gplot?

PROC gplot has more options and can create more colorful and fancier graphics.

Q5. How Would You Identify A Macro Variable?

with Ampersand (&) sign

Q6. How Are Parameters Passed To A Macro?

A macro variable defined in parentheses in a %MACRO statement is a macro parameter. Macro parameters allow you to pass information into a macro.

Here is a simple example:

%macro plot (yvar= ,xvar= ); proc plot; plot &yvar*&xvar; run; %mend plot; %plot(age,sex)

Q7. Explain What Is Sas Informats?

SAS INFORMATS are used to read, or input data from external files known as Flat Files ASCII files, text files or sequential files). The informat will tell SAS on how to read data into SAS variables.

Q8. What Are Symget And Symput?

SYMPUT puts the value from a dataset into a macro variable where as SYMGET gets the value from the macro variable to the dataset.

Q9. What Is The Basic Syntax Style In Sas?

To run program successfully, and you have following basic elements:

There should be a semi-colon at the end of every line

A data statement that defines your data set

Input statement

There should be at least one space between each word or statement

A run statement

For example: Infile ‘H: StatHWyourfilename.dat’;

Q10. Mention What Are The Data Types Does Sas Contain?

The data types in SAS are Numeric and Character.

Q11. For What Purposes Have You Used Sas Macros?

If we want use a program step for executing to execute the same Proc step on multiple data sets. We can accomplish repetitive tasks quickly and efficiently. A macro program can be reused many times. Parameters passed to the macro program customize the results without having to change the code within the macro program. Macros in SAS make a small change in the program and have SAS echo that change thought that program.

Q12. Explain What Does Proc Print, And Proc Contents Are Used For?

To display the contents of the SAS dataset, PROC print is used and also to assure that the data were read into SAS correctly. While, PROC CONTENTS display information about an SAS dataset.

Q13. What System Options Would You Use To Help Debug A Macro?

The SAS System offers users a number of useful system options to help debug macro issues and problems. The results associated with using macro options are automatically displayed on the SAS Log.

Specific options related to macro debugging appear in alphabetical order in the table below:

MEMRPT: Specifies that memory usage statistics be displayed on the SAS Log.

MERROR: SAS will

Q14. Explain What Is The Use Of Function Proc Summary?

The syntax of proc summary is same as that of proc me, it computes descriptive statistics on numeric variables in the SAS dataset.

Q15. How Would You Define The End Of A Macro?

The end of the macro is defined by %Mend Statement.

Q16. What Is The Maximum Length Of The Macro Variable?

32 characters long.

Q17. What Is The Difference Between %local And %global?

The %LOCAL that variable will be used only at the particular block only but in case of the %GLOBAL that variable will be used till the end of the SAS session.

Q18. Mention The Category In Which Sas Informats Are Placed?

SAS informats are placed in three categories:

  • Character Informats: $INFORMATw
  • Numeric Informats : INFORMAT w.d
  • Date/Time Informats: INFORMAT w

Q19. What Is Call Symput?

CALL SYMPUT takes a value from a data step and assigns it to a macro variable. I can then use this macro variable in later steps. To assign a value to a single macro variable,

We use CALL SYMPUT with this general form:

CALL SYMPUT (“macro-variable-name”, value);