Which keyword is used to create an object in Java?
Java AssociateEasy
Java Associate — Easy
Which keyword is used to create an object in Java?
Explanation
The keyword "new" is used to create an object in Java. When you use the "new" keyword, memory is allocated for the object and the constructor is called to initialize the object.