1.1 Give the rank, bounds, size and shape of the arrays defined as follows: a) REAL, DIMENSION(10) :: ONE Answer: 1, lower (1), upper (10), 10 and (10). b) REAL, DIMENSION(2, 0:2) :: TWO Answer: 2, lower (1,0), upper (2,2), 6 and (2,3). c) INTEGER, DIMENSION(-1:1, 3 , 2) :: THREE Answer: 3, lower (-1,1,1), upper (1,3,2), 18 and (3,3,2). d) REAL, DIMENSION(0:1, 3) :: FOUR Answer: 2, lower (0,1), upper (1,3), 6 and (2,3).