Multiple choice technology programming languages

What is the use of %INCLUDE statement in a program?

  1. Includes external files

  2. Includes SAS datasets

  3. Includes variables from other datasets

  4. All of the above

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

The %INCLUDE statement brings external SAS code files into the current program during compilation. It does not include datasets or variables - it includes SAS code from external files, similar to #include in C or import in Python.