Asked by Geneva Brems on Jun 04, 2024

verifed

Verified

What is the purpose of the new operator?

New Operator

A keyword used in programming to create instances of classes by allocating memory for the objects.

Purpose

The reason for which something is done or created, or for which something exists.

  • Understand the process of memory allocation in Java, particularly by employing the new operator.
verifed

Verified Answer

MN
MANAL NAJIM RASHID AL RASBIJun 09, 2024
Final Answer :
The new operator is used to create an object of a class and associate the object with the variable that names it.Memory is also allocated for that object.