To show money format on the JSP page we use __________ class
-
AirthmaticFormat
-
CurrencyFormat
-
NumberFormat
-
StringBuffer
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.