Multiple choice technology programming languages

The report output should be {x y } {1 2} {2 5} {Total 2} Choose the correct option. NOTE { } are added for readability

  1. proc print data = new N='total';

  2. proc print data = new sum='total';

  3. proc print data = new; sum/ label='total';

  4. proc print data = new sum; label='total';

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

The N= option in PROC PRINT creates a summary row labeled with the specified text that shows the count (N statistic) of observations. For the given data with 2 rows, this produces a 'Total 2' summary line. Option B incorrectly uses 'sum=' which would sum variables, not count observations.