Multiple choice technology programming languages

Given the following PROC FORMAT step, how is the value 6.1 displayed when the SKICOND format is applied? proc format; value skicond 0-3=’Poor’ 3<-6=’Fair’ 6<-9=’Good’ 9<-high=’Excellent’; run;

  1. 6.1

  2. Fair

  3. Good

  4. . (Missing)

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

The value 6.1 falls in the '6<-9' range, which means 'greater than 6 and less than 9'. This range maps to 'Good'. The '<-' operator creates an exclusive range (excluding endpoints). Since 6.1 is greater than 6 and less than 9, it returns 'Good'.