What is a recommended practice when serializing collections of objects in Java?
Use transient collections to avoid serialization
Store each serialized object in a separate file for efficiency
Serialize each object in the collection individually
Ensure all elements in the collection implement the Serializable interface
Serializable