Multiple choice technology web technology

With Transfer Object, it is possible that one runs into an issue of having multiple copies of the same Transfer object class with different data

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Transfer Objects are simple data carriers used to transfer data between layers. Having multiple instances with different data is expected behavior - each instance is independent and represents a specific state. The pattern's purpose is to reduce network calls by bundling data, not to prevent multiple instances from existing.