Question: How would you use the TaxCalculator to determine the amount of tax on $50?

  1. TaxCalculator.calculate(50);
  2. new TaxCalculator.calculate(50);
  3. calculate(50);
  4. new TaxCalculator.calculate($50);

Answer: The correct answer of the above question is Option A:TaxCalculator.calculate(50);