サンマイクロシステムズの認定資格は、Java、Solarisというネットワーク社会を支える先進的な技術を修得した方に対し、その技術が規定以上のレベルに達していることを、全世界共通の認定により保証します。
受験チケットのご購入について
ご購入金額が税込36,750円以下のお申込(例:認定試験受験チケット1枚を購入)は、オンライン申込ではお支払い方法はクレジットカード払いのみとなります。その他のお支払い方法をご希望の場合は、こちらのFAX申込票にてお申込下さい。
認定制度の利点
全世界に共通した適切な判断基準で、技術力の評価を行うことができます。
全世界共通の認定により、技術者の高い技術レベルが保証されます。
認定取得により、ビジネスチャンスの場が大きく広がります。
名刺等に認定ロゴを印刷することも可能です。
SUN 認証の310-083 問題集皆と分かち合います
1. To take advantage of the capabilities of modern browsers that use web standards, such as XHTML and
CSS, your web application is being converted from simple JSP pages to JSP Document format. However,
one of your JSPs, /scripts/screenFunctions.jsp, generates a JavaScript file. This file is included in several
web forms to create screen-specific validation functions and are included in these pages with the
following statement:
10. <head>
11. <script src='/scripts/screenFunctions.jsp'
12. language='javascript'
13. type='application/javascript'> </script>
14. </head>
15. <!-- body of the web form -->
Which JSP code snippet declares that this JSP Document 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' />
E. No declaration is needed because the web form XHTML page already declares the MIME type of the
/scripts/screenFunctions.jsp file in the <script> tag.
Answer: D
2. Given the JSP code:
10. <html>
11. <body>
12. <jsp:useBean id='customer' class='com.example.Customer' />
13. Hello, ${customer.title} ${customer.lastName}, welcome
14. to Squeaky Beans, Inc.
15. </body>
16. </html>
Which three types of JSP code are used? (Choose three.)
A. Java code
B. template text
C. scripting code
D. standard action
E. expression language
Answer: BDE
3. You have built a collection of custom tags for your web application. The TLD file is located in the file:
/WEB-INF/myTags.xml. You refer to these tags in your JSPs using the symbolic name: myTags. Which
deployment descriptor element must you use to make this link between the symbolic name and the TLD
file name?
A. <taglib>
<name>myTags</name>
<location>/WEB-INF/myTags.xml</location>
</taglib>
B. <tags>
<name>myTags</name>
<location>/WEB-INF/myTags.xml</location>
</tags>
C. <tags>
<tags-uri>myTags</taglib-uri>
<tags-location>/WEB-INF/myTags.xml</tags-location>
</tags>
D. <taglib>
<taglib-uri>myTags</taglib-uri>
<taglib-location>/WEB-INF/myTags.xml</taglib-location>
</taglib>
Answer: D
4. Which implicit object is used in a JSP page to retrieve values associated with <context-param> entries
in the deployment descriptor?
A. config
B. request
C. session
D. application
Answer: D