Name statements that are execution only.
Answers were Sorted based on User's Feedback
Answer / suresh b anisetty
The conditional statements IF-THEN/ELSE and theloop
statements DO UNTIL nad DO WHILE all are execution time
statements only
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / venkatesh.p
run;
and
quit;
these two statements execute the statements
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / narasimharao
execution statements are
INPUT
CARDS
INFILE
WHERE
LABEL
SELECT
INFORMAT
FORMAT and the list goes
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / karsd
Ans:Run, input, infile , title , label and put stmt too.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / n katepalli
Subsetting IF statement:Stops the current iteration when a
condition is false, does not write the current observation
to the data set, and returns control to the top of the DATA
step.
IF-THEN/ELSE statement :Stops the current iteration when a
conditon is true, writes the current observation to the data
set, and returns control to the top of the DATA step.
DO loops:Cause parts of the DATA step to be executed
multiple times.
LINK and RETURN statements:Alter the flow of control,
execute statements following the label specified, and return
control of the program to the next statement following the
LINK statement.
GO TO statement alters the flow of execution by branching
to the label that is specified in the GO TO statement. SAS
executes subsequent statements then returns control to the
beginning of the DATA step.
_N_ automatic variable in an IF-THEN construct causes parts
of the DATA step to execute only for particular iterations.
SELECT statement:Conditionally executes one of a group of
SAS statements.
OUTPUT statement in an IF-THEN construct:Outputs an
observation before the end of the DATA step, based on a
condition; prevents automatic output at the bottom of the
DATA step.
DELETE statement in an IF-THEN construct:Deletes an
observation based on a condition and causes a return to the
top of the DATA step.
ABORT statement in an IF-THEN construct:Stops execution of
the DATA step and instruct SAS to resume execution with the
next DATA or PROC step. It can also stop executing a SAS
program altogether, depending on the options specified in
the ABORT statement and on the method of operation.
WHERE statement or WHERE= data set option:Causes SAS to read
certain observations based on one or more specified criteria.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prashanth
INFILE and RUN statements are the execution statements.
data,input,cards are declarative statements.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are scrubing procedures in SAS?
Why double trailing @@ is used in input statement?
which domain is better in sas? clinical trails or banking
What is the order of evaluation of the comparison && logical && relational operators:?
what are the scrubbing procedures in sas? : Sas programming
Name some categories in sas 9? : sas-grid-administration
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
Which is the best training institute for SAS in hyderabad.
112 Answers Stansys Software Solutions,
Does anybody has lastest SAS certification dumps,if anybody has please mail me on saggydesai@gmail.com
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;
Mention sas system options to debug sas macros.
I have a dataset with variables empid and doj how to calculate retirement age?