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