समान वस्तु के संग्रह या समूह को कहते हैं
A collection or group of similar object is called
A)
B)
C)
D)
Explanation:
In a general programming context, a collection or group of similar objects is called an array.
Explanation:
- An array is a data structure that holds a fixed number of elements, all of the same type.
- Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value.
Key Characteristics of an Array:
- Same Data Type: All elements in an array must be of the same type (e.g., integers, floats, or strings).
- Fixed Size: The size of the array is defined at the time of declaration and cannot be changed dynamically (in static arrays).
- Indexed Access: Elements can be accessed using their index, starting from 0.