Multiple choice technology programming languages Given the above scenario, the variable name "aulColors" represents: an array of unsigned long an array of floating-point values an array of unary an array of zero-terminated strings Reveal answer Fill a bubble to check yourself A Correct answer Explanation In Hungarian notation: 'a' = array, 'u' = unsigned, 'l' = long. So 'aulColors' decodes to 'array of unsigned long'. This is standard Hungarian prefix composition for complex types.