What is an Object and how do you allocate memory to it?
Object is an instance of a class and it is a software unit
that combines a structured set of data with a set of operations for inspecting
and manipulating that data.
The object is created by using new keyword. When an
object is created using new operator, memory is allocated to it.
Read More →