Q. For the below mentioned code snippet:
var o = new Object();
The equivalent statement is:
β
Correct Answer: (C)
var o= new Object;
Explanation: You can always omit a pair of empty parentheses in a constructor invocation.