Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.
Answers were Sorted based on User's Feedback
Answer / juan
complie. When you submit a DATA step for execution, SAS
checks the syntax of the SAS statements and compiles them,
that is, automatically translate the statements into
machine code.
| Is This Answer Correct ? | 32 Yes | 1 No |
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
Mention some common errors that are usually committed in sas programming.
what are the methods that you would employ to fine tune your SQL extract process using SAS/Access or Proc SQL?
Which is the best training institute for SAS in hyderabad.
112 Answers Stansys Software Solutions,
If you’re not wanting any SAS output from a data step, how would you code the data statement to prevent SAS from producing a set?
What is the difference between %local and %global?
What are symget and symput? : sas-macro
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
What are the differences between sum function and using “+” operator?
What is SAS informats?
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.
Why do we use QUIT commmand for proc datasets and proc sql ???