what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter?
Answer Posted / smile555
Compiler vs. Interpreter
An interpreter translates some form of source code into a
target representation that it can immediately execute and
evaluate. The structure of the interpreter is similar to
that of a compiler, but the amount of time it takes to
produce the executable representation will vary as will the
amount of optimization.
Compiler characteristics:
* spends a lot of time analyzing and processing the program
* resulting executable is some form of machine- specific
binary code
* the computer hardware interprets (executes) the resulting code
* program execution is fast
Interpreter characteristics:
* relatively little time is spent analyzing and processing
the program
* the resulting code is some sort of intermediate code
* the resulting code is interpreted by another program
* program execution is relatively slow
| Is This Answer Correct ? | 148 Yes | 44 No |
Post New Answer View All Answers
how many types prompting framework can be broken down to? : Sas-bi
Explain the difference between using drop = data set option in set and data statement?
what is the difference between nodup and nodupkey options? : Sas programming
How would you define the end of a macro? : sas-macro
What do the PUT and INPUT functions do?
Explain data step in SAS
what are _numeric_ and _character_ and what do they do? : Sas programming
Which date function advances a date, time or datetime value by a given interval?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
Name and describe few sas character functions that are used for data cleaning in brief.
Difference between informat and format?
How to convert a numeric variable to a character variable?
What is the basic syntax style in SAS?
how to do user inputs and command line arguments in sas?
Mention how to limit decimal places for the variable using proc means?