81.6k views
5 votes
When you instantiate an object from a class, ____ is reserved for each instance field in the class.

a.
a field name

b.
a constructor

c.
a signature

d.
memory

1 Answer

3 votes

Answer:

The correct answer is d.Memory

Step-by-step explanation:

The meaning of instantiating an object is to be able to create an instance of the object by using an object-oriented programming (OOP) language. In Java to instantiate an object from a class is to create a specific class and Memory is reserved for each instance field in the class.

User Mistwalker
by
5.0k points