Answer:
The correct answer for the given question is option(c) i.e new
Explanation:
Instantiating an object means creating a object or creating a instance of a class .
The new keyword allocates a memory for the object .
To create instance we follow following syntax
classname objectname =new classname();
for example
abc ob=new abc();
here abc is a class and ob is an object for that class with the help of new keyword it allocate the memory for the object ob.
create, =,object ,is are not any keyword to instantiating an object.
so the correct answer is " new "