What is the difference between serialization and
deserialization?
Answers were Sorted based on User's Feedback
Answer / naviyr
Serialization is the processing of saving object data to
secondary or a permanant storage area. Deserialization is
retrieving the stored data.
In MFC, CArchive object provide this functionality.
"IsStoring" specifies whether the data is being serialized
or de-serialized.
| Is This Answer Correct ? | 22 Yes | 1 No |
Answer / vaishnavi
serialization-saves the state of an object (OR)it is a
process of writing or reading on a persistent space such as
disk file.
Deserialization-restore the state of an object.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / gokul
serialization is saved objet of type,but deserialization
retrive the store data
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / narender .k
Serialization is the processing of saving object data to
secondary .
Deserialization is retrieving the stored data.
| Is This Answer Correct ? | 1 Yes | 2 No |
#include<stdio.h>int(){int a,*b,**c,***d,****e; a=10;b=&a;c=&b;d=&c;e=&c;printf("a=%d b=%u c=%u d=% e=%u",a,b,c,d,e);printf ("%d%d%d\n",a,a+?*b,**c+***d+,****e);return0;}
How you build a project using Developer Studio?
What is odbc in vc ++?
A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.
What is the return value when the InsertItem function fails?
How do I uninstall and reinstall microsoft visual c++ runtime libraries?
What is visual c++ 2010 redistributable package x64?
I have to DLL one is COM dll and another is normal DLL. How I can identify which dll is normal DLL and which DLL is from COM DLL. please give me some clear picture on these
What is a thread (VC++) and state the difference between Cmutex and Csemaphone?
What is the difference between the = and == operators?
What is microsoft visual c++ 2010 x86 redistributable?
Explain the important features of vc++?