What is Array?
An array is a data structure that allows you to store multiple elements of the same data type in a contiguous block of memory. Each element can be accessed using an index.
Arrays are dynamically created objects in java which means →
C...