Name statements that are execution only?

Answers were Sorted based on User's Feedback



Name statements that are execution only?..

Answer / sirishaakella

abort,delete,replace,select,set......etc....these are
executable statements in data step

Is This Answer Correct ?    6 Yes 0 No

Name statements that are execution only?..

Answer / sirishaakella

keep and drop are data set options as well as statements also.

Is This Answer Correct ?    6 Yes 1 No

Name statements that are execution only?..

Answer / kk

Abort, Infile, Input,do,if,merge,put, replace,select,etc...

Is This Answer Correct ?    0 Yes 0 No

Name statements that are execution only?..

Answer / guest

Keep and drop

Is This Answer Correct ?    3 Yes 4 No

Name statements that are execution only?..

Answer / sirisha

keep and drop are data set options .They are not statements
of sas.ofcourse those options are executed while we
subsetting the d/set using set statement....

Is This Answer Correct ?    0 Yes 1 No

Name statements that are execution only?..

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

Name statements that are execution only?..

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

Post New Answer

More SAS Interview Questions

Define run-group processing?

0 Answers  


Describe the function and untility of the most difficult SAS macro that you have written.

0 Answers  


how could you generate test data with no input data? : Sas programming

0 Answers  


We have a string like this "kannafromsalembut" ,from this i want to get only "fromsal" (but one condition with out using substring function)here we can not use scan because in the given string there is no delimeter? so give ans without out using substring ?

5 Answers  


How would you determine the number of missing or nonmissing values in computations?

0 Answers  






how to remove the duplicates by proc sql?

2 Answers   Genpact,


What is connection profile? : sas-grid-administration

0 Answers  


Mention the difference between ceil and floor functions in sas?

0 Answers  


If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?

16 Answers  


for whom is sas data integration studio designed? : Sas-di

0 Answers  


Name validation tools used in SAS

0 Answers  


how do the in= variables improve the capability of a merge? : Sas programming

0 Answers  


Categories