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 |
Explain the special input delimiters used in sas programming.
what is portability of sas programmes?
What is the purpose of the trailing and How would you use them?
Do you know the features of sas?
How would you invoke a macro? : sas-macro
what is the need of INDEX in datasets?
What is the sas data set? : sas-grid-administration
Name statements that function at both compile and execution time.
What are _numeric_ and _character_ and what do they do?
What is the difference between nodupkey and nodup options?
how do you validate sas program?
what is the use of proc sql? : Sas programming