• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

EPractice Lab mock exam 5 <jsp:directive.page> vs <%@page>

 
Bartender
Posts: 2419
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


A developer wants to convert Arabic characters to Unicode in JSP page. This file is
incoudes in several JSP files to convert unicode functions and are included in these pages
with the following statement:
<head>
<script src='/js/unicodeHandler.jsp' language='javascript' type='application/javascript'>
</script>

</head>
Which JSP code snippet declares that unicodeHandler.js is a JavaScript file?
a. <%@page contentType="application/javascript"%>
b. <jsp:page contentType='application/javascript'/>
c. <jsp:document contentType="application/javascript"/>
d. <jsp:directive.page contentType="application/javascript"/>

Given answer is D.
Explanation:
The <%@page %> directive applies to an entire JSP file and any of its static include files, which
together are called a translation unit. A static include file is a file whose content becomes part of
the calling JSP file. The <%@page%> directive does not apply to any dynamic include files.
The attribute contentType is used to specify the MIME type and character encoding the JSP file uses for the response
it sends to the client. We can use any MIME type or character set that are valid for the JSP container.
The default MIME type is text/html, and the default character set is ISO-8859-1.




I think the answer should be A and D because <%@page %> and <jsp:directive.page> is equivalent.
reply
    Bookmark Topic Watch Topic
  • New Topic