How do you call a static method named calculate that belongs to a class named MathUtils?
calculate();
MathUtils::calculate();
new MathUtils().calculate();
MathUtils.calculate();