Multiple choice technology programming languages

The option that has to be used in order to debug a sas program is

  1. option debug=yes;

  2. data x/DEBUGGER;

  3. data x /DEBUG;

  4. option debug;

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

The /DEBUG option in a DATA statement enables SAS interactive debug mode. This allows line-by-line execution and variable inspection during program development.