What are the three main 'simple types' in TypeScript?
array
string
number
boolean
Correct: B, C, D
The three main 'simple types' in TypeScript are boolean, number, and string. These types directly represent basic JavaScript types and are commonly used in TypeScript programs.