What two parts combine to make up the serialization of application objects in Visual C++?

Is it the DECLARE_SERIAL and IMPLEMENT_SERIAL macros?


What are the (2) categories of ANDs and ORs and how can they be described?

I am having trouble understanding these questions and need some clarification please.

Thank you in advance to anyone who has solutions.

What are the (2) categories of ANDs and ORs and how can they be described?

You mean truth tables?

AND
in1 in2 out
 0   0   0
 0   1   0
 1   0   0
 1   1   1

     OR
in1 in2 out
 0   0   0
 0   1   1
 1   0   1
 1   1   1

You mean truth tables?

AND
in1 in2 out
 0   0   0
 0   1   0
 1   0   0
 1   1   1

     OR
in1 in2 out
 0   0   0
 0   1   1
 1   0   1
 1   1   1

I got this one. How about the first question? Any clues?

Hmm, the first question:

What two parts combine to make up the serialization of application objects in Visual C++?

Is it the DECLARE_SERIAL and IMPLEMENT_SERIAL macros?

I really don't know, although I'm going to guess not. Can you give any more information?

No, unfortunately, this is all i've got to go on.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.