Question: 1. Describe any mistake(s) in the following code segment. const int SIZE =5; array items ; items =5; (3 points for number 1 ) 2.

1. Describe any mistake(s) in the following code segment. const int SIZE =5; array items ; items =5; (3 points for number 1 ) 2. Describe any mistake(s) in the following code segment. \begin{tabular}{|l||} \hline Const int SIZE =5; \\ array items ={}; \\ items[SIZE] = "Book"; \\ \hline (3 points for number 2) \end{tabular} 3. Describe any mistake(s) in the following code segment. int SIZE = 10; array items ={}; items =10.5 (3 points for number 3 ) 4. Complete the following steps in code. - Declare an array of size 9 containing doubles. - Prompt the user to enter 9 doubles and store each into the elements of the array. Hint: you can use cin to store input directly into an indexed array. - Display the first, fifth (statistically the median or "middle" element), and last element of the array. You must use the array to receive credit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
