Multiple choice technology programming languages

Given the above scenario, the variable name "aulColors" represents:

  1. an array of unsigned long

  2. an array of floating-point values

  3. an array of unary

  4. 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.