Which of these operators is used to allocate memory for an object?
alloc
new
give
malloc
None of these
Correct Option: B
Operator new dynamically allocates memory for an object and returns a reference to it. This reference is address in memory of the object allocated by new.