Name statements that are execution only.
Answers were Sorted based on User's Feedback
Answer / yuva
wen we r using proc sql tat time
quit; is execution statement
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / vanna.mallikarjunareddy
infile,input,sum statament etc.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / srilatha
there many execution statements,some of them are
DATA
INPUT
CARDS
INFILE
WHERE
LABEL
SELECT
INFORMAT
FORMAT and the list goes.
| Is This Answer Correct ? | 1 Yes | 6 No |
1.What is the difference between _NULL_ , _ALL_, and _N_? 2.What are the uses of _NULL_ using in Data Steps? Can we _NULL_ in Proc Steps also? 3.How do call the macro variable in Data Steps? 4.How to construct Pivot tables in Excel Using SAS?
If you were told to create many records from one record show how you would do this using arrays and with PROC TRANSPOSE?
what is the use of proc sql? : Sas programming
What are the different operating system platforms in which we can use sas? : sas-grid-administration
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
how does sas handle missing values in a merge? : Sas programming
what are several options for creating reports in web report studio? : Sas-bi
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
How would you compile all macros from a folder in a study, within the autoexec program?
what is the effect of the options statement errors=1? : Sas programming
What does a PROC TRANSPOSE do?
Explain substr function?