Identify statements whose placement in the DATA step is
critical.
Answers were Sorted based on User's Feedback
Answer / sandhya
LENGTH statement and
defining GLOBAL variable in MACRO
| Is This Answer Correct ? | 4 Yes | 1 No |
What do you feel about hardcoding?
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
How many ways to overcome a missing values???
why a stop statement is needed for the point= option on a set statement?
What is LOGICAL VARIABLES in SAS.And how it can be used..Can anyone support..???
What is the SAS data set?
How do handle working under pressure?
Have you used macros? For what purpose you have used? : sas-macro
how do u validate sas program
Name statements that are execution only?
How we will Developing new reports Using Data step programming and Macros ?
Can you calculate the mean, median and mode of the following data set using data step logic? Don't use any function or procedure. data a; input age @@; datalines; 22 32 32 32 43 23 24 56 45 54 28 29 27 26 25 28 30 20 18 37 36 47 46 56 19 20 ; run; I have calculated the mean which i have posted in the answer section.