what is the difference between compiler and interpreter?
give any one example (software product) that act as a
interpreter?
Answer Posted / urvashi sahu
#Compiler produce the object code and interpreter doesn't
produce the object code
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the good sas programming practices for processing large data sets?
Hello Friends, am new to this forum and am not good at sas progarmming. please can any one of you send me couple of sample large sample SAS Jobs which can you use 200 MB of data and other sas job upto 25GB of data. am doing a performance testing on our legacy systems and new upgraded system. I would really appreciate if you can do me this favor Thank you Priya
how to change the execute of macro
Name and describe few sas character functions that are used for data cleaning in brief.
What are the differences between proc means and proc summary?
What is the difference between one to one merge and match merge? Give an example.
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
If a variable contains letters or special characters, can it be numeric data type?
how are numeric and character missing values represented internally? : Sas programming
What is the work of tranwrd function?
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.
what is metadata? : Sas-bi
What are the special input delimiters used in SAS?
What would you change about your job?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS