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 |
What do you know about symput and symget?
how do u test a pros sql(works or not) without executing it?
what is cummaltive frequency,and varience in proc unviarte
What are the new features included in the new version of SAS Programming Language?
why is a stop statement needed for the point=option on a set statement? : Sas programming
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
Name any two sas spawners? : sas-grid-administration
What are the ways to do a “table lookup” in sas?
What are the data types in sas?
How do you add a number to a macro variable?
Describe crosslist option in tables statement?