HACKER SAFEにより証明されたサイトは、99.9%以上のハッカー犯罪を防ぎます。
カート(0

SUN 310-083 問題集

310-083

試験コード:310-083

試験名称:Sun Certified Web Component Developer for J2EE 5

最近更新時間:2026-07-14

問題と解答:全276問

310-083 無料でデモをダウンロード:

PDF版 Demo ソフト版 Demo オンライン版 Demo

追加した商品:"PDF版"
価格: ¥6599 

無料問題集310-083 資格取得

質問 1:
In a JSP-centric web application, you need to create a catalog browsing JSP page. The catalog is stored as a List object in the catalog attribute of the webapp's ServletContext object. Which scriptlet code snippet gives you access to the catalog object?
A. <% List catalog = servletContext.getAttribute("catalog"); %>
B. <% List catalog = application.getAttribute("catalog"); %>
C. <% List catalog = config.getAttribute("catalog"); %>
D. <% List catalog = context.getAttribute("catalog"); %>
正解:B

質問 2:
The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows:
1 1. <sl:shoppingList>
1 2. <sl:item name="Bread" />
1 3. <sl:item name="Milk" />
1 4. <sl:item name="Eggs" />
15. </sl:shoppingList>
The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for sl:item is
ItemSimpleTag.
ShoppingListTag extends BodyTagSupport and ItemSimpleTag extends
SimpleTagSupport.
Which is true?
A. ShoppingListTag can find the child instances of ItemSimpleTag by calling super.getChildren() and casting each to an ItemSimpleTag.
B. ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling findAncestorWithClass() on the PageContext and casting the result to ShoppingListTag.
C. ShoppingListTag can find the child instances of ItemSimpleTag by calling getChildren() on the PageContext and casting each to an ItemSimpleTag.
D. ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling getParent() and casting the result to ShoppingListTag.
E. It is impossible for ItemSimpleTag and ShoppingListTag to find each other in a tag hierarchy because one is a Simple tag and the other is a Classic tag.
正解:D

質問 3:
Given the element from the web application deployment descriptor:
< jsp-property-group>
< url-pattern>/main/page1.jsp</url-pattern>
< scripting-invalid>true</scripting-invalid>
< /jsp-property-group>
and given that /main/page1.jsp contains:
< % int i = 12; %>
< b><%= i %></b>
What is the result?
A. <b>12</b>
B. The JSP fails to execute.
C. <b></b>
D. <% int i = 12 %>
< b><%= i %></b>
正解:B

質問 4:
What is true about Java EE authentication mechanisms?
A. If your deployment descriptor correctly declares an authentication type of
CLIENT_CERT, your users must have a certificate from an official source before they can use your application.
B. If your deployment descriptor correctly declares an authentication type of BASIC, the container automatically requests a user name and password whenever a user starts a new session.
C. If you want your web application to support the widest possible array of browsers, and you want to perform authentication, the best choice of Java EE authentication mechanisms is DIGEST.
D. To use Java EE FORM authentication, you must declare two HTML files in your deployment descriptor, and you must use a predefined action in the HTML file that handles your user's login.
正解:D

質問 5:
Which two are true about authentication? (Choose two.)
A. Form-based logins should NOT be used when sessions are maintained by cookies or
SSL session information.
B. J2EE compliant web containers are NOT required to support the HTTPS protocol.
C. Form-based logins should NOT be used with HTTPS.
D. When using Basic Authentication the target server is NOT authenticated.
E. Web containers are required to support unauthenticated access to unprotected web resources.
正解:D,E

質問 6:
You are creating a content management system (CMS) with a web application front-end.
The JSP that displays a given document in the CMS has the following general structure:
1 . <%-- tag declaration --%>
2 . <t:document>
...
11. <t:paragraph>... <t:citation docID='xyz' /> ...</t:paragraph>
...
99. </t:document>
The citation tag must store information in the document tag for the document tag to generate a reference section at the end of the generated web page.
The document tag handler follows the Classic tag model and the citation tag handler follows the Simple tag model. Furthermore, the citation tag could also be embedded in other custom tags that could have either the Classic or Simple tag handler model.
Which tag handler method allows the citation tag to access the document tag?
A. public void doTag() {
JspTag docTag = findAncestorWithClass(this, DocumentTag.class);
((DocumentTag)docTag).addCitation(this.docID);
}
B. public void doStartTag() {
JspTag docTag = findAncestorWithClass(this, DocumentTag.class);
((DocumentTag)docTag).addCitation(this.docID);
}
C. public void doStartTag() {
Tag docTag = findAncestor(this, DocumentTag.class);
((DocumentTag)docTag).addCitation(this.docID);
}
D. public void doTag() {
Tag docTag = findAncestor(this, DocumentTag.class);
((DocumentTag)docTag).addCitation(this.docID);
}
正解:A

質問 7:
What is true about Java EE authentication mechanisms?
A. If your deployment descriptor correctly declares an authentication type of
CLIENT_CERT, your users must have a certificate from an official source before they can use your application.
B. If your deployment descriptor correctly declares an authentication type of BASIC, the container automatically requests a user name and password whenever a user starts a new session.
C. If you want your web application to support the widest possible array of browsers, and you want to perform authentication, the best choice of Java EE authentication mechanisms is DIGEST.
D. To use Java EE FORM authentication, you must declare two HTML files in your deployment descriptor, and you must use a predefined action in the HTML file that handles your user's login.
正解:D

質問 8:
Your management has required that all JSPs be created to generate XHTML-compliant content and to facilitate that decision, you are required to create all JSPs using the JSP
Document format. In the reviewOrder.jspx page, you need to use several core JSTL tags to process the collection of order items in the customer's shopping cart. Which JSP code snippets must you use in the reviewOrder.jspx page?
A. <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
version="2.0"
xmlns:c="http://java.sun.com/jsp/jstl/core">
< !-- page content -->
< /jsp:root>
B. <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
version="2.0">
< jsp:directive.taglib prefix="c"
uri="http://java.sun.com/jsp/jstl/core" />
< !-- page content -->
< /jsp:root>
C. <html xmlns:jsp="http://java.sun.com/JSP/Page"
version="2.0"
xmlns:c="http://java.sun.com/jsp/jstl/core">
< !-- page content -->
< /html>
D. <html xmlns:jsp="http://java.sun.com/JSP/Page"
version="2.0">
< jsp:directive.taglib prefix="c"
uri="http://java.sun.com/jsp/jstl/core" />
< !-- page content -->
< /html>
正解:A

弊社のSUN 310-083を利用すれば試験に合格できます

弊社のSUN 310-083は専門家たちが長年の経験を通して最新のシラバスに従って研究し出した勉強資料です。弊社は310-083問題集の質問と答えが間違いないのを保証いたします。

310-083無料ダウンロード

この問題集は過去のデータから分析して作成されて、カバー率が高くて、受験者としてのあなたを助けて時間とお金を節約して試験に合格する通過率を高めます。我々の問題集は的中率が高くて、100%の合格率を保証します。我々の高質量のSUN 310-083を利用すれば、君は一回で試験に合格できます。

TopExamは君に310-083の問題集を提供して、あなたの試験への復習にヘルプを提供して、君に難しい専門知識を楽に勉強させます。TopExamは君の試験への合格を期待しています。

弊社は失敗したら全額で返金することを承諾します

我々は弊社の310-083問題集に自信を持っていますから、試験に失敗したら返金する承諾をします。我々のSUN 310-083を利用して君は試験に合格できると信じています。もし試験に失敗したら、我々は君の支払ったお金を君に全額で返して、君の試験の失敗する経済損失を減少します。

一年間の無料更新サービスを提供します

君が弊社のSUN 310-083をご購入になってから、我々の承諾する一年間の更新サービスが無料で得られています。弊社の専門家たちは毎日更新状態を検査していますから、この一年間、更新されたら、弊社は更新されたSUN 310-083をお客様のメールアドレスにお送りいたします。だから、お客様はいつもタイムリーに更新の通知を受けることができます。我々は購入した一年間でお客様がずっと最新版のSUN 310-083を持っていることを保証します。

安全的な支払方式を利用しています

Credit Cardは今まで全世界の一番安全の支払方式です。少数の手続きの費用かかる必要がありますとはいえ、保障があります。お客様の利益を保障するために、弊社の310-083問題集は全部Credit Cardで支払われることができます。

領収書について:社名入りの領収書が必要な場合、メールで社名に記入していただき送信してください。弊社はPDF版の領収書を提供いたします。

弊社は無料SUN 310-083サンプルを提供します

お客様は問題集を購入する時、問題集の質量を心配するかもしれませんが、我々はこのことを解決するために、お客様に無料310-083サンプルを提供いたします。そうすると、お客様は購入する前にサンプルをダウンロードしてやってみることができます。君はこの310-083問題集は自分に適するかどうか判断して購入を決めることができます。

310-083試験ツール:あなたの訓練に便利をもたらすために、あなたは自分のペースによって複数のパソコンで設置できます。

SUN Sun Certified Web Component Developer for J2EE 5 認定 310-083 試験問題:

1. A developer is designing the presentation tier for a web application that relies on a complex session bean. The session bean is still being developed and the APIs for it are NOT finalized. Any changes to the session bean API directly impacts the development of the presentation tier. Which design pattern provides a means to manage the uncertainty in the
API?

A) Intercepting Filter
B) Composite View
C) View Helper
D) Front Controller
E) Business Delegate
F) Chain of Responsibility


2. Your web application uses a simple architecture in which servlets handle requests and then forward to a JSP using a request dispatcher. You need to pass information calculated by the servlet to the JSP; furthermore, that JSP uses a custom tag and must also process this information. This information must NOT be accessible to any other servlet, JSP or session in the webapp. How can you accomplish this goal?

A) This CANNOT be done as the tag handler has no means to extract this data.
B) Add an attribute to the context object before using the request dispatcher.
C) Add an attribute to the request object before using the request dispatcher.
D) Store the data in a public instance variable in the servlet.


3. Click the Exhibit button. Given the web application deployment descriptor elements:
1 1. <filter>
1 2. <filter-name>ParamAdder</filter-name>
1 3. <filter-class>com.example.ParamAdder</filter-class>
1 4. </filter>
...
3 1. <filter-mapping>
3 2. <filter-name>ParamAdder</filter-name>
3 3. <servlet-name>Destination</servlet-name>
3 4. </filter-mapping>
...
5 5. <servlet-mapping>
5 6. <servlet-name>Destination</servlet-name>
5 7. <url-pattern>/dest/Destination</url-pattern>
5 8. </servlet-mapping>
What is the result of a client request of the Source servlet with no query string?

A) The output "filterAdded = null" is written to the response stream.
B) An exception is thrown at runtime within the service method of the Destination servlet.
C) An exception is thrown at runtime within the service method of the Source servlet.
D) The output "filterAdded = addedByFilter" is written to the response stream.


4. Given:
String value = getServletContext().getInitParameter("foo");
in an HttpServlet and a web application deployment descriptor that contains:
< context-param>
< param-name>foo</param-name>
< param-value>frodo</param-value>
< /context-param>
Which two are true? (Choose two.)

A) Compilation fails because ServletContext does NOT have a getInitParameter method.
B) The foo parameter must be defined within the <servlet> element of the deployment descriptor.
C) Compilation fails because getInitParameter returns type Object.
D) The foo initialization parameter can also be retrieved using
getServletConfig().getInitParameter("foo").
E) The foo initialization parameter is NOT a servlet initialization parameter.
F) The foo initialization parameter CANNOT be set programmatically.


5. You need to store a floating point number, called Tsquare, in the session scope. Which two code snippets allow you to retrieve this value? (Choose two.)

A) float Tsquare = ((Float) session.getAttribute.("Tsquare")).floatValue();
B) float Tsquare = (Float) session.getAttribute("Tsquare");
C) float Tsquare = ((Float) session.getFloatAttribute.("Tsquare")).floatValue;
D) float Tsquare = session.getFloatAttribute("Tsquare");
E) float Tsquare = (float) session.getNumericAttribute("Tsquare");
F) float Tsquare = ((Float) session.getNumericAttribute.("Tsquare")).floatValue;


質問と回答:

質問 # 1
正解: E
質問 # 2
正解: C
質問 # 3
正解: A
質問 # 4
正解: E、F
質問 # 5
正解: A、B

310-083 関連試験
310-081 - Sun Certified Web Component Developer for J2EE 1.4
310-082 - Sun Certified Web Component Developer for J2EE 1.4. Upgrade
連絡方法  
 [email protected] サポート

試用版をダウンロード

人気のベンダー
Adobe
Apple
Avaya
CheckPoint
Citrix
CIW
CompTIA
EC-COUNCIL
EXIN
FileMaker
IBM
Juniper
Lotus
Lpi
Network Appliance
OMG
Oracle
PMI
SNIA
Symantec
VMware
XML Master
Zend-Technologies
The Open Group
H3C
F5
3COM
BEA
Dell
ACI
すべてのベンダー
TopExam問題集を選ぶ理由は何でしょうか?
 品質保証TopExamは我々の専門家たちの努力によって、過去の試験のデータが分析されて、数年以来の研究を通して開発されて、多年の研究への整理で、的中率が高くて99%の通過率を保証することができます。
 一年間の無料アップデートTopExamは弊社の商品をご購入になったお客様に一年間の無料更新サービスを提供することができ、行き届いたアフターサービスを提供します。弊社は毎日更新の情況を検査していて、もし商品が更新されたら、お客様に最新版をお送りいたします。お客様はその一年でずっと最新版を持っているのを保証します。
 全額返金弊社の商品に自信を持っているから、失敗したら全額で返金することを保証します。弊社の商品でお客様は試験に合格できると信じていますとはいえ、不幸で試験に失敗する場合には、弊社はお客様の支払ったお金を全額で返金するのを承諾します。(全額返金)
 ご購入の前の試用TopExamは無料なサンプルを提供します。弊社の商品に疑問を持っているなら、無料サンプルを体験することができます。このサンプルの利用を通して、お客様は弊社の商品に自信を持って、安心で試験を準備することができます。