Multiple choice technology programming languages

Is it possible to store multiple data types in System.Array?

  1. True

  2. False

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

System.Array is a strongly-typed, fixed-size collection that stores only one type of elements. When you create an array, you specify the type (int[], string[], etc.), and all elements must be of that type. To store multiple types, you would use collections like ArrayList (non-generic) or object.