Name statements that are execution only?
Answers were Sorted based on User's Feedback
abort,delete,replace,select,set......etc....these are
executable statements in data step
| Is This Answer Correct ? | 6 Yes | 0 No |
keep and drop are data set options as well as statements also.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / kk
Abort, Infile, Input,do,if,merge,put, replace,select,etc...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dupe
Data set option :
Data new(keep=age race gender);
set old;
run;
Data set statemnet:
Data new;
set old;
drop age race and gender;
run;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / chiranjeevi
Mainly two statements are used in execution of the dataset i.e
1)Global statements
2)Localstatements
The following are the Global statements
1)By statement
2)label statement
3)where statement
Local statement
1)set
2)merge
3)update
4)control
5)length
6)array e.tc..,
| Is This Answer Correct ? | 1 Yes | 2 No |
Name statements that are recognized at compile time only?
Diff between proc sql merge and join?
Can you suggest us materials for sdtm mapping?
what are some good sas programming practices for processing very large data sets? : Sas programming
Can you excute a macro within a macro? Describe.
Which of the following is not created during compilation phase?
Explain the use of proc print and proc contents?
Hi Jeevan/Akshara I have tried to contact SASI Vats for latest Advanced SAS Programming Certification Dumps (A00-212) but have not got any response. I would highly and gratefully appreciate your assistance in this regard. If you guys have access to this, would you be kind enough to forward it to me ? I would abide by all the terms you have for this. Please, note my email id: upretigopi@yahoo.com Preti Sharma
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
How do you control the number of observations and/or variables read or written?
how to read the variables in sas? : Sas-administrator
What is the function of output statement in a SAS Program?