25.
Which data type in TypeScript is used to represent a collection of elements?
Array
Boolean
String
Number
Correct: A
The Array data type in TypeScript is used to represent a collection of elements of any other data type. It allows you to store multiple values of the same or different types in an ordered and indexed manner. Arrays are commonly used to work with lists, sets, or sequences of data in TypeScript programming.