Concept Flow - Jagged arrays
Declare jagged array variable
Allocate outer array (rows)
For each row: allocate inner array (columns)
Access elements using two indices: arr[row
Use nested loops to traverse or modify elements
Jagged arrays are arrays of arrays where each inner array can have different lengths. You first create the outer array, then create each inner array separately.