Multiple choice technology programming languages

DATA Step is used for :-

  1. To output the statistical report.

  2. To create a new dataset

  3. To delete a dataset

  4. To read an external file

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

The DATA Step in SAS can create new datasets and read external files, making both B and D correct. It does not directly output statistical reports (A is incorrect) - procedures like PROC MEANS or PROC PRINT are used for that. It also does not delete datasets (C is incorrect) - that requires PROC DELETE or DATASETS procedure.