Multiple choice technology programming languages

proc format; value num 1-6 = 'High' 6-10= 'Low'; run;

  1. Format is not created

  2. Format is created with the name of num

  3. ERROR: These two ranges overlap: 1-6 and 6-10 (fuzz=1E-12).

  4. Syntax Error

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

SAS PROC FORMAT does create the format named 'num' despite the overlapping ranges. When ranges overlap, SAS uses the first matching range (1-6 takes precedence over 6-10). This generates a warning about overlap but does not prevent format creation. The format is successfully created and can be applied to data.