11. |
Array can be considered as set of elements stored in sequential memory locations but having __________. એરે ને ____________ ધરાવતા સિક્વન્સીઅલ મેમરી લોકેશન્સ માં સ્ટોર થયેલા એલિમેન્ટ્સ ના સમૂહ તરીકે કન્સિડર કરી શકાય.
|
||||||||
Answer:
Option (a) |
12. |
What is the output of this C code? void main() આપેલા C કોડનું આઉટપુટ શું હશે? void main()
|
||||||||
Answer:
Option (c) |
13. |
What is the output of this C code? #include <stdio.h> આપેલા C કોડનું આઉટપુટ શું હશે? #include <stdio.h>
|
||||||||
Answer:
Option (a) |
14. |
Which is true about the given statment ? int arr[10] = {0,1,2,[7]=7,8,9}; આપેલા સ્ટેટમેન્ટ માટે સાચું શું હશે? int arr[10] = {0,1,2,[7]=7,8,9};
|
||||||
Answer:
Option (c) |
15. |
What is the value of a[4]? int a[5]={1,2,4,1,0}; a[4] ની વેલ્યુ શું હશે? int a[5]={1,2,4,1,0};
|
||||||||
Answer:
Option (c) |
16. |
What is the output of this C code? void main() આપેલા C કોડનું આઉટપુટ શું હશે? void main()
|
||||||||
Answer:
Option (a) |
17. |
What is the output of this C code? #include<stdio.h> void main() આપેલા C કોડનું આઉટપુટ શું હશે? #include<stdio.h> void main()
|
||||||||
Answer:
Option (b) |
18. |
What is the index number of the last element of an array with 29 elements? 29 એલિમેન્ટ્સ વાળા એરેના છેલ્લા એલિમેન્ટ ની index શું હશે?
|
||||||||
Answer:
Option (b) |
19. |
Which of the following is a two-dimensional array? નીચેનામાંથી કયું ટુ-ડાઈમેન્સનલ એરે છે?
|
||||||||
Answer:
Option (b) |
20. |
In the declaration given below, what is "array"? int array[20]; નીચે આપેલા ડીક્લેરેશન માં, "array" શું છે? int array[20];
|
||||||||
Answer:
Option (b) |