A jagged array, also known as a ragged array or uneven array in computer science, is an array of arrays whose member arrays might be of varying lengths, resulting in rows of jagged edges when seen as output.
- Two-dimensional arrays, on the other hand, are always rectangular, therefore jagged arrays should not be mistaken with multidimensional arrays, though the former is sometimes used to imitate the latter.
- A jagged array is an array of arrays with member arrays of varying widths, i.e., we can make a 2-D array with a variable number of columns in each row. These arrays are sometimes referred to as Jagged arrays.
- Jagged arrays are a type of array that can be used to hold rows of different lengths in order to increase performance while working with multi-dimensional arrays. An array is a collection of elements of the same data type that are arranged in a specific order.
Thus this is the meaning of ragged array.
To learn more about array, refer: https://brainly.com/question/28061186
#SPJ4