what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter?
Answers were Sorted based on User's Feedback
Answer / sahim
compiler and interpreter is same thing but a little difference
between both compiler is compile our program at a time but interpreter check our program line by line.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / charulata
1: A compiler generally takes source code and turns it into
instructions that run on the hardware directly.
4: A compiler searches all the errors of a program and
lists them. If the program is error free then it converts
the code of program into machine code and then the program
can be executed by separate commands.
1: An interpreter generally processes the source code
directly or first tokenizes it into a byte-code type form
to interpret that.
2: An interpreter checks the errors of a program statement
by statement. After checking one statement, it converts
that statement into machine code and then executes that
statement. The process continues until the last statement
of program occurs.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / urvashi sahu
#Compiler produce the object code and interpreter doesn't
produce the object code
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / krishna gavidi
compiler compile the source code while interpreter compile
the code that is allready compiled that is in the form of
bytecode
compiler scan whole code at once so it is fast incompare
with interpreter while interpreter comiled the byte code
line by line and convert in machine code so it is slow in
compare with compiler
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / sushant tambad
compiler:translates the entire program.
interpreter:translates the program line by line.
compiler:requires more main memory.
interpretor:requires less memory.
compiler:converts the entire program to machine code,where all the syntax error are removed and executes the machine code.
interpretor:each time the program is executed every line is checked for syntax then converts to equivalent object code directly.
compiler : execution time is less
interpretor: execution time is more
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / avm
interpreter is one type of compiler it convert machine code
to byte code in java only
| Is This Answer Correct ? | 1 Yes | 4 No |
What is a put statement?
what is operational data and operational system? : Sas-di
Mention what is SAS data set?
whenever we using the merging through data set merging ,we can get note in log like this "MERGE STATEMENT HAS MORE THAN ONE ONE DATASET BY REPEATED BY VAIABLES" but the output has come in good manner,whenever in in sql(full join) we can get cartion product.so How do overcome this problem in sql?
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 set to a second data set, and the non-matches of the right-most data set to a third data set.
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
Hi, I have one dataset like id date ex: id date 1 13 1 13Oct2011 2 14 2 14Oct2011 3 15 3 15Oct2011 --->this is the current date here i want date format like 13Oct2011,14Oct2011 how we can modify the numeric to date format plz answer.
what is the difference between %put and symbolgen?
how to delete the duplicate columns permanently in SQL
Can you excute a macro within a macro? Describe.
what are system option ? give few examples ? what are dataset options and dataset statements ? if there is a keep option and keep statement ? which one is executed first ? Difference between a WHERE statement and IF statement ? what is the advantage of using WHERE statement option on the dataset ?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming