Multiple choice technology web technology

To show money format on the JSP page we use __________ class

  1. AirthmaticFormat

  2. CurrencyFormat

  3. NumberFormat

  4. StringBuffer

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The NumberFormat class (specifically NumberFormat.getCurrencyInstance()) is the correct Java class for formatting monetary values on JSP pages. ArithmeticFormat is not a standard Java class, CurrencyFormat doesn't exist in the standard API, and StringBuffer is for string manipulation not formatting.