Consider the following statement: int alpha[24][10]; Which of the following statements about alpha is true? Rows of alpha are from index 0 to index 23 and columns are from index 0 to index 9. 1) The rows of alpha are from index 1 to index 24 and columns are from index 1 to index 10. 2) The rows of alpha are from index 0 to index 23 and columns are from index 0 to index 9. 3) The rows of alpha are from index 0 to index 24 and columns are from index 0 to index 10. 4) The rows of alpha are from index 1 to index 23 and columns are from index 1 to index 9.