🎴 Flashcard Mode

Java Server Pages (JSP) Fundamentals

Card1 / 20
Mastered0
Review0
QuestionClick to flip

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

AnswerClick to flip back
A
NumberFormat ==
💡 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.

Change Mode