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

Answer Posted / rekha

1.An compiler interprets the higher level language to
machine understandable language.

2.compiler compils entire code at atime,but interpreter
interprets the code line by line.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a method to debug and test your SAS program?

726


what are some good sas programming practices for processing very large data sets? : Sas programming

515


What is the use of function Proc summary?

657


what are the scrubbing procedures in sas? : Sas programming

836


what has been your most common programming mistake? : Sas programming

571






How do you debug and test your SAS programs?

1050


Mention few capabilities of sas framework.

696


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


What is the difference between using drop = data set option in data statement and set statement?

642


What is slibref?

748


describe the interaction table in sas di? : Sas-di

597


What is a put statement?

668


How do you convert basic cube to transaction cube and transaction cube to basic cube?

1777


What are the ways in which macro variables can be created in sas programming?

573


Mention the category in which sas informats are placed?

631