which one of following Dim statements declare a two-dimensional Integer variable array named Price that consists of 2 rows and 5 columns?
Dim Price {1 to 2, 1 to 5} as Integer or Dim as Integer Price {1 to 2, 1 to 5} or
Dim Integer as Price {1 to 2, 1 to 5} or Dim Price as Integer {1 to 5, 1 to 2}