what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter?
Answer Posted / rajaanku11
1.Compiler checks syntax of programme where as Interpreter
checks the keywords of a prog.
2. compiler checks at a time all the prog, But interpreter
checks simultaneously in the eidtor.
3.Interpretor provides colour coding to the prog and helps
in self debugging while writing a prog.
| Is This Answer Correct ? | 342 Yes | 152 No |
Post New Answer View All Answers
how do the in= variables improve the capability of a merge? : Sas programming
do you prefer proc report or proc tabulate? Why? : Sas programming
How is character variable converted into numeric variable and vice versa?
Explain data_null_?
what is hash files in sas and why we are using this one in sas?
Why and when do you use proc sql?
What do you code to create a macro? : sas-macro
is data integration and etl programming is same? : Sas-di
What is the difference between using drop = data set option in data statement and set statement?
How do dates work in SAS data?
Mention common programming errors committed in sas ?
In sas, what are the areas that you are most interested in? : sas-grid-administration
What are the difference between ceil and floor functions in sas?
what is proc Index? and what is proc document?
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.