How would you code a macro statement to produce information
on the SAS log? This statement can be coded anywhere.

Answers were Sorted based on User's Feedback



How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / raja

%put <text>;

use the above statement any where in macro programe to
write some information on to the log. With in the text you
can also call/reference the macto variables.

Is This Answer Correct ?    4 Yes 1 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / name is no need

why some people are giving the answer
Mprint,Mlogic,........,i think these are used when we want
to debug the macros.if we use the above options the macro
processor resolves the macros and results the Base SAS code
in log window ,but here the questions is How would you code
a macro statement to produce information on the SAS log.
So persons who are giving the answers could you please read
the questions properly and then give the answers if you
don't know the answer ,don't give any answer,this is not a
game.why some useless morons are giving these type of
stupid answers.

Is This Answer Correct ?    5 Yes 2 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / name is no need

Hello "Name Is No Need" You are a manner less fellow .
Don't irritate to others ,if you know the answers share with
others and try to suggest them, who are giving the wrong
answers. ok Take care and all the best to Ur carer .

bye

Is This Answer Correct ?    3 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / aravind rangaraj

%put stament is used to print the information about macro
variable references and this statemet is
global.mprint,mlogic symbolgen are system options and used
to print the information in the log to debug the macros

Is This Answer Correct ?    3 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / mamtha

MPRINT MLOGIC & SYMBOLGEN ARE USED IN THE OPTIONS STATEMENT
TO PRODUCE INFORMN.....

Is This Answer Correct ?    2 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / kiranb kumar yarlagadda

How would you code a macro statement to produce information
on the SAS log? This statement can be coded anywhere.



inorder to see the results(output) we need to navigate the
log window when we use %PUT statement .

Is This Answer Correct ?    1 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / radhiv kumar sure

BY USING %PUT WE CAN PRODUCE THE CODE IN SAS LOG

Is This Answer Correct ?    0 Yes 0 No

How would you code a macro statement to produce information on the SAS log? This statement can be ..

Answer / dupe bassey

OPTIONS MPRINT MLOGIC MERROR SYMBOLGEN;

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More SAS Interview Questions

How to write duplicate records into a separate dataset using sort?

4 Answers   HSBC,


what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming

0 Answers  


What can be the size of largest dataset in SAS?

0 Answers  


how sas deals with business intelligence? : Sas-bi

0 Answers  


what is sas data set?

0 Answers  






what is program data vector? : Sas-administrator

0 Answers  


What is factor analysis?

0 Answers  


For clinical entire study how many tables will create approx?

0 Answers   TCS,


What is the difference between an informat and a format. Name three informats or formats.

6 Answers  


How we will Developing new reports Using Data step programming and Macros ?

4 Answers  


what is Difference between PROC SQL JOINS and MERGE?

3 Answers   Accenture, Wipro,


data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.

1 Answers  


Categories