Question: How would you serialize this class?
- Mark the User class with the `DeserializableAttribute`.
- Declare the class as `public serializable class User {}`.
- Mark the User class with the `SerializableAttribute` attribute.
- Declare the class as `private serializable class User {}`.
Answer: The correct answer of the above question is Option C:Mark the User class with the `SerializableAttribute` attribute.