what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter?
Answer Posted / anuja
Compiler:-
-Generates code to implement meaning of a source program in
the execution domain.
-Checks the code entirely in one go.
-It checks the legality of the operations(assigning or
manipulating variables)
Interpreteres:-
-bridges execution gap without generating a machine
language program.
-Meaning of source statement is implemented by finding
appropriate data manipulation routines and invokes it with
appropriate parameters.(instead of code generation)
-works line by line
-Avoiding generation of machine language makes interpreter
portable.
| Is This Answer Correct ? | 48 Yes | 22 No |
Post New Answer View All Answers
Explain input and put function?
Mention common programming errors committed in sas ?
What does proc print, and proc contents are used for?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
what are the benefits of data integration? : Sas-di
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
how does sas handle missing values in assignment statements? : Sas programming
what are some good sas programming practices for processing very large data sets? : Sas programming
What are the default statistics that proc means produce?
How to specify variables to be processed by the freq procedure?
What do you understand by the term Normal Distribution?
Mention the validation tools used in SAS?
what is the Population you used in your project, is it ITT or PP?
How do you debug and test your SAS programs?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?