Monday, November 24, 2008

SAS interview questions:Macros

1. Have you used macros? For what purpose you have used?
Yes I have, I used macros in creating datasets and tables where it is necessary to make a small change through out the program where it is necessary to use the code and again.

2. How would you invoke a macro?
After I have defined a macro I can invoke it by adding the percent sign prefix to its name like this: % macro name a semicolon is not required when invoking a macro, though adding one generally does no harm.

3. How we can call macros with in data step?
We can call the macro with CALLSYMPUT

4. How do u identify a macro variable?
Ampersand (&)

5. How do you define the end of a macro?
The end of the macro is defined by %Mend Statement

6. 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.

7. What is the difference between %LOCAL and % Global?
% Local is a macro variable defined inside a macro.%Global is a macro variable defined in open code (outside the macro or can use anywhere).

8. How long can a macro variable be? A token?
A component of SAS known as the word scanner breaks the program text into fundamental units called tokens.· Tokens are passed on demand to the compiler.· The compiler then requests token until it receives a semicolon.· Then the compiler performs the syntax check on the statement.

9. If you use a SYMPUT in a DATA step, when and where can you use the macro variable?
Macro variable is used inside the Call Symput statement and is enclosed in quotes.

10. What do you code to create a macro? End one?
%MACRO and %MEND

11. What is the difference between %PUT and SYMBOLGEN?
%PUT is used to display user defined messages on log window after execution of a program where as % SYMBOLGEN is used to print the value of a macro variable resolved, on log window.

12. How do you add a number to a macro variable?
Using %eval function

13. Can you execute a macro within a macro? Describe.
Yes, Such macros are called nested macros. They can be obtained by using symget and call symput macros.

14. If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable?
If we need a value of a macro variable then we must define it in such terms so that we can call them everywhere in the program. Define it as Global. There are different ways of assigning a global variable. Simplest method is %LET.

Ex:A, is macro variable. Use following statement to assign the value of a rather than the variable itselfe.g.

%Let A=xyzx="&A";

This will assign "xyz" to x, not the variable xyz to x.

15. Can you execute macro within another macro? If so, how would SAS know where the current macro ended and the new one began?

Yes, I can execute macro within a macro, what we call it as nesting of macros, which is allowed. Every macro's beginning is identified the keyword %macro and end with %mend.

16. 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;

17. How would you code a macro statement to produce information on the SAS log?
This statement can be coded anywhere?
OPTIONS, MPRINT MLOGIC MERROR SYMBOLGEN;

18. How we can call macros with in data step?
We can call the macro with
CALLSYMPUT,
Proc SQL and
%LET statement.

19. Tell me about 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,

I use CALL SYMPUT with this general form:
CALL SYMPUT (“macro-variable-name”, value);
Where macro-variable-name, enclosed in quotation marks, is the name of a macro variable, either new or old, and value is the value I want to assign to that macro variable. Value can be the name of a variable whose value SAS will use, or it can be a constant value enclosed quotation marks.

CALL SYMPUT is often used in if-then statements such as this:
If age>=18 then call symput (“status”,”adult”);
Else call symput (“status”,”minor”);

These statements create a macro variable named &status and assign to it a value of either adult or minor depending on the variable age.Caution: We cannot create a macro variable with CALL SYMPUT and use it in the same data step because SAS does not assign a value to the macro variable until the data step executes. Data steps executes when SAS encounters a step boundary such as a subsequent data, proc, or run statement.

20. Tell me about % include and % eval?
The %include statement, despite its percent sign, is not a macro statement and is always executed in SAS, though it can be conditionally executed in a macro.It can be used to setting up a macro library. But this is a least approach.

The use of %include does not actually set up a library. The %include statement points to a file and when it executed the indicated file (be it a full program, macro definition, or a statement fragment) is inserted into the calling program at the location of the call. When using the %include building a macro library, the included file will usually contain one or more macro definitions.%EVAL is a widely used yet frequently misunderstood SAS(r) macro language function due to its seemingly simple form.

However, when its actual argument is a complex macro expression interlaced with special characters, mixed arithmetic and logical operators, or macro quotation functions, its usage and result become elusive and problematic. %IF condition in macro is evaluated by %eval, to reduce it to true or false.

21. Describe the ways in which you can create macro variables?
There are the 5 ways to create macro variables:
%Let
%Global
Call Symput
Proc SQl
Parameters.

22. Tell me more about the parameters in macro?
Parameters are macro variables whose value you set when you invoke a macro. To add the parameters to a macro, you simply name the macro vars names parenthesis in the %macro statement.
Syntax:
%MACRO macro-name (parameter-1= , parameter-2= , ……parameter-n = );
macro-text%;
MEND macro-name;

23. What is the maximum length of the macro variable?
32 characters long.

24. Automatic variables for macro?
Every time we invoke SAS, the macro processor automatically creates certain macro var. eg: &sysdate &sysday.

25. What system options would you use to help debug a macro?
Debugging a Macro with SAS System Options. 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.SAS Option Description:

MEMRPT Specifies that memory usage statistics be displayed on the SAS Log.
MERROR: SAS will issue warning if we invoke a macro that SAS didn’t find. Presents Warning Messages when there are misspellings or when an undefined macro is called.
SERROR: SAS will issue warning if we use a macro variable that SAS can’t find.
MLOGIC: SAS prints details about the execution of the macros in the log.
MPRINT: Displays SAS statements generated by macro execution are traced on the SAS Log for debugging purposes.
SYMBOLGEN: SAS prints the value of macro variables in log and also displays text from expanding macro variables to the SAS Log.

26. If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable?
If we need a value of a macro variable then we must define it in such terms so that we can call them everywhere in the program. Define it as Global.
There are different ways of assigning a global variable.
Simplest method is %LET.

Ex:A, is macro variable. Use following statement to assign the value of a rather than the variable itselfe.g.
%Let A=xyzx="&A";
This will assign "xyz" to x, not the variable xyz to x.

27. Can you execute macro within another macro? If so, how would SAS know where the current macro ended and the new one began?
Yes, I can execute macro within a macro, what we call it as nesting of macros, which is allowed. Every macro's beginning is identified the keyword %macro and end with %mend.

28. 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;

29. How would you code a macro statement to produce information on the SAS log?
This statement can be coded anywhere?
OPTIONS MPRINT MLOGIC MERROR SYMBOLGEN;

30. How we can call macros with in data step?
We can call the macro with CALLSYMPUT, Proc SQL and %LET statement.

31. 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.

32. What are the macros you have used in your programs?
Used macros for various puposes, few of them are..
1) Macros written to determine the list of variables in a dataset:
%macro varlist (dsn);
proc contents data = &dsn out = cont noprint;
run;

proc sql noprint;
select distinct name into:varname1-:varname22from cont;
quit;

%do i =1 %to &sqlobs;
%put &i &&varname&i;
%end;
%mend varlist;
%varlist(adverse)

2) Distribution or Missing / Non-Missing Values%macro missrep(dsn, vars=_numeric_);

proc freq data=&dsn.;
tables &vars. / missing;
format _character_ $missf. _numeric_ missf.;
title1 ‘Distribution or Missing / Non-Missing Values’;
run;
%mend missrep;
%missrep(study.demog, vars=age gender bdate);

3) Written macros for sorting common variables in various datasets%macro sortit (datasetname, pid, investigator, timevisit)
PROC SORT DATA = &DATASETNAME;
BY &PID &INVESTIGATOR;
%mend sortit;

4) Macros written to split the number of observations in a dataset
%macro split (dsnorig, dsnsplit1, dsnsplit2, obs1);
data &dsnsplit1;
set &dsnorig (obs = &obs1);
run;data &dsnsplit2;
set &dsnorig (firstobs = %eval(&obs1 + 1));
run;%mend split;
%split(sasuser.admit,admit4,admit5,2)

33. What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in SAS with macros?

SAS Enables the user to call macros that have been stored as SAS programs.

The auto call macro facility allows users to access the same macro code from multiple SAS programs. Rather than having the same macro code for in each program where the code is required, with an autocall macro, the code is in one location. This permits faster updates and better consistency across all the programs.Macro set-up:The fist step is to set-up a program that contains a macro, desired to be used in multiple programs. Although the program may contain other macros and/or open code, it is advised to include only one macro.

Set MAUTOSOURSE and SASAUTOS:
Before one can use the autocall macro within a SAS program, The MAUTOSOURSE option must be set open and the SASAUTOS option should be assigned. The MAUTOSOURSE option indicates to SAS that the autocall facility is to be activated. The SASAUTOS option tells SAS where to look for the macros.For ex: sasauto=’g:\busmeas\internal\macro\’;34. What %put do?It displays the macro variable value when we specify%put (my first macro variable… is &……..)% Put _automatic_ option displays all the SAS system macro variables includind &SYSDATE AND &SYSTIME.

4 comments:

Unknown said...

Thanks a lot for the information, you provide on the SAS interview questions

Unknown said...

wonderful post and very helpful, thanks for all this information. You are including better information regarding this topic in an effective way.Thank you so much
SAS Training in Chennai

Clinnovo said...

Such an ideal piece of blog. It’s quite interesting to read content like this. I appreciate your blog
SDTM Training

KITS Technologies said...

I really liked your blog post.Much thanks again. Awesome.
Oracle Apps funcational online online training
Oracle Apps technical online online training
Oracle BPM online online training
Oracle Cloud Administration online online training
Oracle Data Integrator online online training
Oracle DBA online online training