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 executes steps sequentially in the order they appear, not based on step type. In this example, the DATA step (creating Example2) executes first, followed by the PROC PRINT step. PROC steps do not take precedence over DATA steps.