Question: How would you use the TaxCalculator to determine the amount of tax on \$50?
- calculate(50);
- new TaxCalculator().calculate(\$50);
- TaxCalculator.calculate(50);
- new TaxCalculator().calculate(50);
Answer: The correct answer of the above question is Option C:TaxCalculator.calculate(50);