What is the pound sign used for the DATA _NULL_?
Answers were Sorted based on User's Feedback
Answer / kranthi arabelly
_NULL_ : specifies that no SAS dataset is to be created
| Is This Answer Correct ? | 20 Yes | 5 No |
Answer / altumish
All the answers provided above are wrong, please read the
question carefully and answer.
BTW-we can use pound sign in data _null_ to read the data
from the specified line.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rinky
It is just a tricky question to see how we respond. I dont
think it is possible. And the answers above are incorrect
as question is not just about data _NULL_. It is about
having # sign with that which is impossible.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / prag s.
we can use _NULL_ for----
reporting purposes
also for modifying a data set
also for not creating a new SAS dataset
| Is This Answer Correct ? | 8 Yes | 6 No |
Answer / kumaraswamy maduri
# can't be used
with a data _null_. It's an interview question to confuse.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / sreekanth rao
i could not get the question.
can any body detail it.
why the pound sign being used in the question.
are the above ansewers are answering the question
corretly..?
pleas coorect me.
Thnaks
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / murali
data_null_ is a power of datastep without creating a data set
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / akash
The _NULL_ DATA step is a specialized case of the DATA step.
When you use the _NULL_ key word, the DATA statement
processes all statements within the DATA step without data
set
creation1.
Some of the uses of DATA _NULL_ are:
To create customized reports with and without ODS. The
reports can be routed to the Output window, directly to a
printer, to an external file, or any destination that can be
defined by the FILE and FILENAME statement.
To create macro variables based on values obtained from
an
input SAS data set or external file.
To create ASCII data (flat) files for importing into MS
Excel,
MS Access or other programs and databases.
To execute special functions or call routines available
within
the DATA step, such as CALL EXECUTE
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sk
Guys, someone has writeen _null_ is used to modify the
datasets. without output dataset how can you modify the
data. Can you please explain.
| Is This Answer Correct ? | 0 Yes | 2 No |
How can you limit the variables written to output dataset in data step?
name several ways to achieve efficiency in your program? : Sas programming
List down the reasons for choosing sas over other data analytics tools.
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
Which are the statements whose placement in the data step is critical?
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?
How to limit decimal places for the variable using proc means?
Tell me about % include and % eval? : sas-macro
How would you delete observations with duplicate keys?
What is the maximum and minimum length of macro variable
How would you determine the number of missing or nonmissing values in computations?
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?