Q26
What kind of an expression is “new Point(2,3)”?
A.
Primary Expression
B.
Object Creation Expression
AnswerC.
Invocation Expression
D.
Constructor Calling Expression
Answer: Option B
Solution
Answer: Option B
Solution:
An object creation expression creates a new object and invokes a function (called a constructor) to initialize the properties of that object. Object creation expressions are like invocation expressions except that they are prefixed with the keyword new.