Does anybody has lastest SAS certification dumps,if anybody
has please mail me at akshara_SAS@ymail.com
Thanks
Akshara
Answer Posted / shashi
Can anyone please, send me the 2013 latest A00-211 (base sas)
Certification dumps to mail I'd - (sbandi48@gmail.com).
Thanks,
Shashi
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you define proc in sas? : sas-grid-administration
why is sas considered self-documenting? : Sas programming
How do you specify the number of iterations and specific condition within a single do loop?
which date function advances a date, time or datetime value by a given interval? : Sas programming
Explain the purpose of substr functions in sas programming.
how many display types available in sas bi dashboard? : Sas-bi
What do you code to create a macro? : sas-macro
what are _numeric_ and _character_ and what do they do? : Sas programming
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.
Can you execute a macro within a macro? Describe. : sas-macro
for whom is sas data integration studio designed? : Sas-di
What is the role of sas grid administrator? : sas-grid-administration
what are informats in sas? : Sas-administrator
What is the difference between where and if statement?
In proc transpose and data step with arrays which one you pick?