Multiple choice technology

data null; put ‘ankur’; run; Where will the ouput(ankur) be written?

  1. a.)In Last file opened

  2. b.)In dataset null

  3. c.)Syntax error

  4. d.)Log

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The PUT statement in a DATA NULL step writes output to the SAS log by default when no FILE statement is specified. The NULL dataset is not stored - it's used only for processing without creating an output dataset.