Does SAS ?Translate? (compile) or does it ?Interpret?? Explain.
Answer Posted / pratik singh jageera
There are hell lot of differences between a Compiler and an Interpreter.But the two which I would take to prove that SAS actually COMPILES and is not Interpreted are:
1)A Compiler takes entire program as input while an interpreter takes single instruction as input.
SAS is a compiler as it does not read and execute one statement at a time. It will either wait for a RUN, QUIT, next DATA or PROC statement before executing its statements.
2)In compiler errors are displayed after entire program is checked.While in interpreter it is displayed for every instruction interpreted.
In SAS all errors are displayed after checking the particular data/proc step.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are the best practices to process the large data sets in sas programming? : Sas-administrator
how do you want missing values handled? : Sas programming
what are the scrubbing procedures in sas? : Sas programming
What is maximum number of rows and cols can be handled in SAS?
Can you explain the process of calendar?
What are the scrubbing procedures in sas?
what are sas/access and sas/connect? : Sas programming
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What was the last computer book you purchased? Why?
What makes sas stand out to be the best over other data analytics tools?
How do you specify the number of iterations and specific condition within a single do loop?
Describe 5 ways to do a “table lookup” in SAS?
What function CATX syntax does?
What is the basic structure of a sas program?
explain the proc in sas? : Sas-administrator