I transfer business data between tiers
-
Value List Handler
-
Data Access Object
-
Transfer Object
-
Business Delegate
C
Correct answer
Explanation
Transfer Object (also known as Data Transfer Object or DTO) is designed to transfer business data across tiers efficiently. It bundles multiple data items into a single serializable object, reducing the number of remote calls. This is particularly useful in distributed systems where network round-trips are expensive.