This is a list of some practice questions and problems for this week's quiz. I encourage you to first, read the sections, and then try review problems in the book. When that is complete, you should try these problems and understand their solutions. This set of quiz questions is not a complete list (and some of the questions are half-formed, so there is no guarantee that any of these will appear on the quizzes). This quiz covers chapter 6. 1. Demonstrate how to declare an array. 2. What is an array? 3. Demonstrate how to initialize an array. 4. Demonstrate how to set every element of an array to a specific value. 5. Demonstrate how to pass an array to a function. 6. Do arrays act like call by reference? Explain how or why. 7. Demonstrate how to access a specific element of an array. 8. What is the smallest index of an array? 9. What is the largest index of an array? 10. What happens when you "blow array bounds" or access an invalid index of an array? 11. Demonstrate code to solve the following problem with an array . . . 12. What is the output of the following program . . . 13. Demonstrate code to search an array for a specific element.