🎴 Flashcard Mode

Java Programming Fundamentals

Card1 / 10
Mastered0
Review0
QuestionClick to flip

What is Externalizable?

AnswerClick to flip back
A
Interface
💡 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.

Change Mode