1.

What are JSP literals?

Answer»

Literals are the values, such as a number or a text string, that are written literally as part of a program code. The JSP expression language defines the following literals −

  • Boolean − true and false

  • Integer − as in Java

  • Floating point − as in Java

  • String − with single and double quotes; " is escaped as \", ' is escaped as \', and \ is escaped as \\.

  • Null − null



Discussion

No Comment Found