Q. What method reference would replace `() -> new Employee()`?
β
Correct Answer: (B)
Employee::new
Explanation: `Employee::new` is the constructor reference replacing the no-arg lambda.