Multiple choice

An array is created to store the salary of some employees. There are 10 elements in the array, but elements of array cannot be initialized. What type of array is this?

  1. Automatic

  2. Static

  3. External

  4. Both automatic & external

  5. None of these

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

If we declare an array, we have all permissions to initialize the elements to some value. We can initialize any element with any value. So, option 5 is correct.