Fill in the blank: The first element of an array in zero-based indexing is accessed using the index ______. | Card: 3 / 20 |
True or False: Once an array's size is declared in C, it can be dynamically changed during runtime. | Card: 5 / 20 |
Which of the following statements is true regarding arrays? A) They allow random access B) They can grow in size dynamically C) They can store different data types D) They are always one-dimensional | Card: 7 / 20 |
Riddle: I store elements sequentially, and my size is fixed once declared. What am I? | Card: 9 / 20 |
![]() Unlock all Flashcards with EduRev Infinity Plan Starting from @ ₹99 only |
What is the primary disadvantage of using arrays for insertion and deletion operations? | Card: 11 / 20 |
Fill in the blank: In an array of size N×M, the indices for rows and columns typically range from ______ to ______. | Card: 13 / 20 |
True or False: Arrays can store variables of different data types in a single array. | Card: 15 / 20 |
False. Arrays are homogeneous and can only store elements of the same data type. | Card: 16 / 20 |
What is the output of accessing the element at index 3 in the integer array int arr[] = {10, 20, 30, 40, 50};? | Card: 17 / 20 |






