Multiple choice technology programming languages

How many program steps are executed when the program below is processed? data user.tables; infile jobs; input date name $ job $; run; proc sort data=user.tables; by name; run; proc print data=user.tables; run;

  1. three

  2. four

  3. five

  4. six

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

This SAS program executes three distinct steps: a DATA step (reading from 'jobs' file), a PROC SORT step (sorting by name), and a PROC PRINT step (displaying the data). Each 'run' statement marks the end of a step, and there are three such statements in the program.