Multiple choice technology programming languages

What is Externalizable?

  1. Class

  2. Constructor

  3. Interface

  4. Method

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

Externalizable is an interface in Java that extends Serializable. It provides an alternative mechanism for serialization where the class takes complete control over the serialization process, writing its own data format and protocol. This gives more control but requires more effort than implementing Serializable.