To show money format on the JSP page we use __________ class
-
AirthmaticFormat
-
CurrencyFormat
-
NumberFormat ==
-
StringBuffer
C
Correct answer
Explanation
NumberFormat is the correct class for displaying currency/money formats in JSP pages. While the option text has formatting issues (extra '==' characters), NumberFormat.getCurrencyInstance() is the standard way to format monetary values. ArithmeticFormat is misspelled, and CurrencyFormat/StringBuffer are not used for this purpose.