Answer Posted / rithi
In computer science, in the context of data storage and
transmission, serialization is the process of converting a
data structure or object into a sequence of bits so that it
can be stored in a file or memory buffer, or transmitted
across a network connection link to be "resurrected" later
in the same or another computer environment. When the
resulting series of bits is reread according to the
serialization format, it can be used to create a
semantically identical clone of the original object. For
many complex objects, such as those that make extensive use
of references, this process is not straightforward.
This process of serializing an object is also called
deflating or marshalling an object. The opposite operation,
extracting a data structure from a series of bytes, is
deserialization (which is also called inflating or
unmarshalling).
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is setstring method in java?
What is the difference between Logical Parallelism and Physical Parallelism?
Write a program for the problem: the array of inetegers indicating the marks of the students is given, U have to calculate the percentile of the students aaccording to this rule: the percentile of a student is the %of no of student having marks less then him. For eg: suppose Student Marks A 12 B 60 C 80 D 71 E 30 F 45 percentile of C = 5/5 *100 = 100 (out of 5 students 5 are having marks less then him) percentile of B = 3/5*100 = 60% (out of 5, 3 have markses less then him) percentile of A = 0/5*100 = 0%.
How do I enable jvm?
Can we install jre without jdk?
What's the difference between local, global and universal groups? : java security
what is reflection api? How are they implemented?
What is tuple2?
What is aop java?
What is a stream in programming?
What is numberformatexception in java?
What is the purpose of jdk?
What is the locale class?
How do I run a project in netbeans?
How do I run a java project?