Array in C Welcome to your Array in C 1. Fast access of array elements can be done using____PointerCall by ValueCall by ReferenceOperator2. An array stores elements ____ in the memoryrandomlynon sequentiallycontiguouslynone of the above3. In ____ , address of the array elements are passed to functioncall by valuecall by referencenone of the above4. In int x[10]; the number 10 specified in the square bracket represents the10 addresses10 values10 linesnone of the above5. Output of the following program isvoid main() {int x[]={1,2.2,3},i;clrscr();printf("%f",x[1]);}the program will not runthe program will run with warning messagesnone of the above6. Each array element is stored in separatememory locationspagesdirectoryfile7. An array is a collection of multiple elements of ____ data typedissimilarsamenone of the above8. If in char c[]="Hello" the H is stored at 65470, then the o is stored at ___654746547565480654769. In int x[5]={2,3,4,5,6}; the base address is 65564, then the location of element 2 is ______6556465566655686556310. What is the output of int num[2][3]={1,2,3,4}, {3,4,5,6} }; ?1, 2, 32, 3, 4Compilation errorSyntax error11. How many rows and columns are there in int num[2][3]={ {1,2,3}, {4,5,6} }; ?two rows and three columnsthree rows and two columnsnone of the above12. The array int x[5]; can hold values in between_______ to ______-32768 to 327670 to 255-32768 to 32767none of the above13. What is the value of a[1] in static int [3] ; ?120314. In int x[3] if x[0]=12 and x[2]=26, then x[3] is ____015garbage valuenone of the above15. One-dimensional array needs only ____ subscript.onetwoboth of the first twonone of the above16. In int x[5], the x represents a _____charactervariable name of the arraynone of the above17. When in between two arrays of the same data type, if the values are interchanged then _____address of elements are also changedonly base address of the array is changednone of the above18. Array element counting starts from zero, hence the statement int x[0] holds _____nothingone integer valueone char valuenone of the above19. The 1st element according to C compiler physically is a _____2nd element0th element1st elementnone of these20. In long k[4] the total memory occupied by the array is____16842Time is Up!
It’s good to answer these questions.
Good,Thanks.