Multiple choice technology programming languages What is Object?? Instance of Class Static Variable Keyword 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).