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

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

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