# 1बहुविकल्पीWhat is the process of converting an object into a stream of bytes called?CompilationSerializationExecutionDeserialization
# 2बहुविकल्पीWhen a stream of bytes is converted back into an object, what is this process called?SerializationCompilationDeserializationAbstraction
# 3बहुविकल्पीWhat is the primary purpose of `serialVersionUID` in Java serialization?To encrypt the serialized dataTo compress the serialized dataTo store the object's metadataTo identify the version of a class during deserialization
# 4बहुविकल्पीWhich of the following is a major advantage of serialization?It always makes programs run faster.It eliminates the need for memory management.It allows objects to be easily saved to disk and reloaded later.It automatically fixes bugs in the code.