Multiple choice .net Which statement about objects is true? One object is used to create one class. One class is used to create one object. One object can create many classes. One class can create many objects. 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.