The concept behind searching a two-dimensional array is similar to that of searching a single-dimension array.
Have to receive a searchable value, such as user input, and then search the array’s contents until a value is found or the entire array has been searched without a match.
The nested looping techniques is very useful for searching value in two- dimension array. The nested looping constructs allow you to search each array element individually.