Multiple choice technology programming languages

Data Example2; Set Example1; Run; Proc Print Data = Example2; run; Here Proc step is executed first as Proc step always takes precedence in SAS .

  1. True

  2. False

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

SAS programs compile and execute steps sequentially from top to bottom. The DATA step must complete execution first to create the dataset Example2 before the PROC PRINT step can print it.