What are some business scenarios where arrays are useful?

  • When you want to save the names of the months to a variable.
  • When a fixed collection of bank accounts has to be stored and used in the payment process.
  • When all the invoices paid in the previous month have to be processed.
  • When the names of the employees in a certain unit have to be verified in a database

You can feel free to add more …

@Emmanuel_Mutua

when there is no need of adding additional data in the run time while procesing.

Cheers!