what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the basic syntax style in SAS?

621


Which command is used to perform sorting in sas program?

599


Explain the use of proc gplot? : sas-grid-administration

556


What are the different versions of sas that you have used until now? : sas-grid-administration

737


What is SAS? What are the functions does it performs?

736






data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

1803


how to remove duplicates using proc sql?

634


What is SAS?

626


What are the advantages of using sas?

615


WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?

2270


For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration

540


How do you delete duplicate observations in sas?

581


how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming

846


Explain data step in SAS

633


What are the difference between the sas data step and sas procs?

614