Multiple choice .net

Which statement about objects is true?

  1. One object is used to create one class.

  2. One class is used to create one object.

  3. One object can create many classes.

  4. One class can create many objects.

  5. There is no relationship between objects and classes.

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

In object-oriented programming, a class acts as a blueprint or template. From a single class definition, you can instantiate (create) many unique objects, each with its own state but sharing the same structure and behavior.