Multiple choice technology programming languages

CObject class provides support to which of the following?

  1. Message Processing

  2. Serialization

  3. Single Document Interface

  4. Multiple Document Interface

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

CObject is MFC's root base class that provides serialization support through the Serialize() method and DECLARE_SERIAL/IMPLEMENT_SERIAL macros. Message processing, SDI, and MDI are handled by derived classes like CWinApp, CFrameWnd, and CDocument, not by CObject itself.