Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Name statements that are execution only.

Answers were Sorted based on User's Feedback



Name statements that are execution only...

Answer / ravi

run;
It is the execution statement

Is This Answer Correct ?    8 Yes 1 No

Name statements that are execution only...

Answer / daya

proc print data=datasetname; run;

Is This Answer Correct ?    6 Yes 1 No

Name statements that are execution only...

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

Name statements that are execution only...

Answer / venkatesh.p

run;
and
quit;
these two statements execute the statements

Is This Answer Correct ?    2 Yes 0 No

Name statements that are execution only...

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

Name statements that are execution only...

Answer / karsd

Ans:Run, input, infile , title , label and put stmt too.

Is This Answer Correct ?    0 Yes 0 No

Name statements that are execution only...

Answer / aparna

infile input statments

Is This Answer Correct ?    0 Yes 0 No

Name statements that are execution only...

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

Name statements that are execution only...

Answer / prashanth

INFILE and RUN statements are the execution statements.

data,input,cards are declarative statements.

Is This Answer Correct ?    0 Yes 0 No

Name statements that are execution only...

Answer / vengala reddy

run

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SAS Interview Questions

describe about joins? briefly?

2 Answers   CitiGroup,


How do you specify the number of iterations and specific condition within a single do loop?

0 Answers  


what is information maps?

0 Answers   CitiGroup,


WHAT DOES A SAS SPECIFICATION DOCUMENT SDS CONTAIN ?

1 Answers  


How do you debug macros?

3 Answers   Accenture,


how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming

0 Answers  


1 new york 7,262,700 2 los angeles 3,259,340 3 philadelphia 1,642,900 how to read the above data using input statement consider the above data is in txt format externally u have to use infile and input statement.

9 Answers   Quintiles,


How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set.

10 Answers   Accenture,


Why do we use QUIT commmand for proc datasets and proc sql ???

3 Answers  


What are the functions which are used for character handling functions?

0 Answers  


how to shift the rows to cols? eg: i have like field1 field2 field3 10 20 20 this should be displayed as field1 10 field2 20 field3 30 (without the obs col) how do this?can i use transpose or tell me suitable way to do this?

3 Answers   CMC,


Tell e how how dealt with..

0 Answers   Wipro,


Categories