Multiple choice technology web technology

A Transfer Object class necessarily would have to implement java.io.serializable in order for it to be passed over the network.

  1. True

  2. False

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

Transfer Objects can be passed over the network using various serialization mechanisms (Java serialization, XML, JSON, etc.). While implementing java.io.Serializable is one common approach, it's not strictly necessary - other serialization frameworks can be used. The statement is too absolute.