MOST IMPORTANT ADVANCE SAS INTERVIEW QUESTIONS

MOST IMPORTANT SAS INTERVIEW QUESTIONS

Which are the MOST IMPORTANT SAS INTERVIEW QUESTIONS? Want to shift your career to Advanced SAS? Then we will provide you with the complete details about the Interview question and Answers on our site page. We have provided all level of expertise question and answers to clear an interview on the first attempt itself. If you are good at the SAS concepts there are many leading companies that offer various job role like Base SAS and Advanced SAS, Clinical SAS Programmer, Analytics with Sas, SAS Analyst, Data Analyst (R/SAS), Sr Analyst Marketing sas, Advance Analytics – SAS, AVP – Analytics & Reporting, Software Developer- SAS Base and many other roles too. For any further details about the Advanced SAS jobs and Advanced SAS Interview Question and Answers visit our site Gradjobopenings.com.

We at gradjobopenings.com provide free job alerts of freshers job drives. In this website we list on campus job openings for freshers and off campus job openings for freshers and also work from home job openings. This is the best website to apply for off campus drive in India. Visit our website for government job alerts and private job alerts. We also list free interview notes and study materials, one of the best interview study website.comfortable to face the interviews:

Question 1. Explain What Is Sas Informats?
Answer :
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.

Question 2. What Is The Difference Between %local And %global?
Answer :
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.


Question 3. What Are Symget And Symput?
Answer :
SYMPUT puts the value from a dataset into a macro variable where as SYMGET gets the value from the macro variable to the dataset.

Question 4. What System Options Would You Use To Help Debug A Macro?
Answer :
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

SAS Programming Tutorial
Question 5. What Are Automatic Variables For Macro?
Answer :
Every time we invoke SAS, the macro processor automatically creates certain macro var.
eg: &sysdate, &sysday.


Question 6. What Is Call Symput?
Answer :
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);

Question 7. How Are Parameters Passed To A Macro?
Answer :
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)


Question 8. For What Purposes Have You Used Sas Macros?
Answer :
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.

Question 9. How Would You Define The End Of A Macro?
Answer :
The end of the macro is defined by %Mend Statement.


Question 10. How Would You Identify A Macro Variable?
Answer :
with Ampersand (&) sign


Question 11. What Is The Maximum Length Of The Macro Variable?
Answer :
32 characters long.


Question 12. What Is The Basic Syntax Style In Sas?
Answer :
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’;


Question 13. Mention What Are The Data Types Does Sas Contain?
Answer :
The data types in SAS are Numeric and Character.

Question 14. Explain What Proc Glm Does?
Answer :
Proc glm performs simple and multiple regression, analysis of variance (ANOVAL), analysis of covariance, multivariate analysis of variance and repeated measure analysis of variance.

Question 15. Explain What Does Proc Print, And Proc Contents Are Used For?
Answer :
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.


Question 16. Explain What Is The Use Of Function Proc Summary?
Answer :
The syntax of proc summary is same as that of proc means, it computes descriptive statistics on numeric variables in the SAS dataset.

Question 17. Mention The Category In Which Sas Informats Are Placed?
Answer :
SAS informats are placed in three categories:

Character Informats: $INFORMATw

Numeric Informats : INFORMAT w.d

Date/Time Informats: INFORMAT w


Question 18. Explain What Is The Use Of Proc Gplot?
Answer :
PROC gplot has more options and can create more colorful and fancier graphics.


Question 19. Mention What Is The Difference Between Nodupkey And Nodup Options?
Answer :
The difference between the NODUP and NODUPKEY is that, NODUP compares all the variables in our dataset while NODUPKEY compares just the BY variables.

Leave a Comment

Your email address will not be published. Required fields are marked *

error: Content is protected !!