Multiple choice technology programming languages

In order to write each input record into the log the option used is

  1. put ;

  2. put list;

  3. list;

  4. put LIST;

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

The LIST option in a DATA step writes each input record to the SAS log. This is useful for debugging data reading issues. Option B (put list;) would write the string 'list' literally. Option D uses incorrect syntax.