Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Select: (2 points) 2-Dimensional Array A[2][3] is declared as: int A[2][3]={{1, 2, 3},{9, 8, 7}}.Then, first element of the array has an index: Select one:
Select: (2 points) 2-Dimensional Array A[2][3] is declared as: int A[2][3]={{1, 2, 3},{9, 8, 7}}.Then, first element of the array has an index: Select one: a. A[0][0] O b. A[2][3] O c. A[1][1] O d. A[3][2] Select T for True and F for False. (10 points/ 1 point each) 1- There are three text files modes. 2- 2-Dimensional Array B[2][3] is declared as: int B[2][3]={1,2,3},{9, 4, 5), then B consists of 2 rows and 3 columns. 3- Write mode opens a new file for reading. 4- In an array declared as B[n], the index goes from B[1] to B[n]. 5- To open the file myFile.txt" in the append through the pointer P use the following command: P=fopen("myFile.txt", "A"); > 6- Array Pis declared as: int P[ ]={2, 11, -5, 12, 4}, then P[0]=2. 7- Array Pis declared as: int P[ ]={2, 11, -5, 12, 4), then P[4]=4. 8- Write mode erases a file, if existing and new one is created. 9- The enumerated type is built on the float type. 10- Array Pis declared as: int P[ ]={2, 11, -5, 12, 4), then * (P)+1=3
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started