Question: Why is it usually better to work with Objects instead of Arrays to store a collection of records?

  1. Objects are more efficient in terms of storage.
  2. Adding a record to an object is significantly faster than pushing a record into an array.
  3. Most operations involve looking up a record, and objects can do that better than arrays.
  4. Working with objects makes the code more readable.

Answer: The correct answer of the above question is Option C:Most operations involve looking up a record, and objects can do that better than arrays.