Multiple choice technology programming languages

we Can create multiple objects of a single class.

  1. True

  2. False

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

A class defines a blueprint, and you can create any number of objects (instances) from that class using the new keyword. Each object has its own state but shares the same class definition. This is a fundamental principle of object-oriented programming.