Does anybody has lastest SAS certification dumps,if anybody
has please mail me at akshara_SAS@ymail.com
Thanks
Akshara
Answer Posted / sugesh
could you please mail me the BASE SAS certification dumps
A00-211
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain proc sort?
Briefly explain input and put 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 the command used to find missing values?
What Proc glm does?
What do the mod and int function do? : Sas programming
What is the SAS data set?
What is the use of PROC gplot?
Explain data step in SAS
Can you explain the process of calendar?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
What is by-group processing?
What are the different servers in sas? : sas-grid-administration
If a variable contains only numbers, can it be a character data type?
How would you invoke a macro? : sas-macro