What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array@The element will be set to 0.@The compiler would report an error.@The program may crash if some important data gets overwritten.@The array size would appropriately grow.@C@
What does the following declaration mean? int (*ptr)[10]@ptr is array of pointers to 10 integers@ptr is a pointer to an array of 10 integers@ptr is an array of 10 integers@ptr is an pointer to array@B@
In C, if you pass an array as an argument to a function, what actually gets passed?@Value of elements in array@First element of the array@Base address of the array@Address of the last element of array@C@
Which of the following correctly declares an array?@int anarray[10];@int anarray;@anarray{10};@array anarray[10];@A@
What is the index number of the last element of an array with 29 elements?@29@28@0@Programmer-defined@B@
Which of the following is a two-dimensional array?@array anarray[20][20];@int anarray[20][20];@int array[20, 20];@char array[20];@B@
Which of the following correctly accesses theseventh element stored in foo, an array with 100 elements?@foo[6];@foo[7];@foo(7);@foo;@A@
Which of the following gives the memory address of the first element in array foo, an array with 100 elements?@foo[0];@foo;@&foo;@foo[1];@A@
what is the use of arrays@sorting or ordering data@store input data@both@none@C@
an array is declared as A[1000],which element is represented by A[99]@98@99@100@none@C@
What manipulation can we do with 2D arrays@add@multiply@inverse@all@D@
An array is a collection of variables of _______ types@Same@Different@any@none@A@
An array can be@1D@2D@both@none@C@
The data type of array elements is known as@base type@view type@both@none@A@
Strings are considered as _______ dimensional array@1@2@multi@all@A@
The size of which array can be skiped to intialization@1@2@multi@none@A@
Arrays are passed by @value@refrence@both@none@B@
Arrays are automatically converted into@pointer@functions@both@none@A@
Two D arrays are stored in memory in@file@matrix@text@none@B@
