Multiple choice technology programming languages

What is Object??

  1. Instance of Class

  2. Static Variable

  3. Keyword

  4. None Of above

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

An object is a concrete instance of a class. When you write 'MyClass obj = new MyClass()', obj is the object/instance and MyClass is the class template. Objects have state (fields) and behavior (methods).