Array in CWelcome to your Array in C1. The array int x[5]; can hold values in between_______ to ______ -32768 to 32767 0 to 255 -32768 to 32767 none of the above2. What is the output of int num[2][3]={1,2,3,4}, {3,4,5,6} }; ? 1, 2, 3 2, 3, 4 Compilation error Syntax error3. Output of the following program isvoid main() {int x[]={1,2.2,3},i;clrscr();printf("%f",x[1]);} the program will not run the program will run with warning messages none of the above4. One-dimensional array needs only ____ subscript. one two both of the first two none of the above5. An array stores elements ____ in the memory randomly non sequentially contiguously none of the above6. Array element counting starts from zero, hence the statement int x[0] holds _____ nothing one integer value one char value none of the above7. In int x[5]={2,3,4,5,6}; the base address is 65564, then the location of element 2 is ______ 65564 65566 65568 655638. The 1st element according to C compiler physically is a _____ 2nd element 0th element 1st element none of these9. How many rows and columns are there in int num[2][3]={ {1,2,3}, {4,5,6} }; ? two rows and three columns three rows and two columns none of the above10. When in between two arrays of the same data type, if the values are interchanged then _____ address of elements are also changed only base address of the array is changed none of the above11. In int x[10]; the number 10 specified in the square bracket represents the 10 addresses 10 values 10 lines none of the above12. In int x[5], the x represents a _____ character variable name of the array none of the above13. Each array element is stored in separate memory locations pages directory file14. In ____ , address of the array elements are passed to function call by value call by reference none of the above15. If in char c[]="Hello" the H is stored at 65470, then the o is stored at ___ 65474 65475 65480 6547616. An array is a collection of multiple elements of ____ data type dissimilar same none of the above17. What is the value of a[1] in static int [3] ; ? 1 2 0 318. In long k[4] the total memory occupied by the array is____ 16 8 4 219. Fast access of array elements can be done using____ Pointer Call by Value Call by Reference Operator20. In int x[3] if x[0]=12 and x[2]=26, then x[3] is ____ 0 15 garbage value none of the aboveTime is Up!
It’s good to answer these questions.
Good,Thanks.