Which statements are BEST describe prefix attribute of <%@ taglib prefix=...%>directive of JSP file?

Which statements are BEST describe prefix attribute of <%@ taglib prefix=...%>directive of JSP file?




a. Specifies the relative or absolute URI of the tag library descriptor.
b. Specifies the required prefix that distinguishes custom tags from built-in tags. The prefix names jsp, jspx, java, javax, servlet, sun and sunw are reserved.
c. Allows programmers to include their own new tags in the form of tag libraries. These libraries can be used to encapsulate functionality and simplify the coding of a JSP.
d. The scripting language used in the JSP. Currently, the only valid value for this attribute is java.





Answer: B


Learn More :