SlideShare a Scribd company logo
1 of 10
Download to read offline
Demo Edition
© 2012 - 2013 Test Killer, LTD All Rights Reserved
Sun Certified Enterprise Architect,
Java, EE5 Upgrade Exam
Exam: 310-053
310-053
1 http://www.troytec.com
QUESTION: 1
You are asked to architect an SOA solution that leverages Java web services. The
architecture needs to be flexible and allow for the SOAP 1.1, SOAP 1.2, and REST
implementations. Which Java EE technology should you use?
A. JAXP
B. JAXB
C. JAX-WS
D. JAX-RPC
Answer: C
QUESTION: 2
You work for a small IT shop. The developers are responsible for deploying production
applications. All of the connection and resource parameters are distributed in the Java
source code. Your IT shop has a limited infrastructure so there have been few issues with
pushing production applications. Your IT shop has been purchased and is now reselling
Java products to customers. You now have dedicated development, testing, staging, and
production environments. A new requirement states that these applications must support
rapid deployment to each environment. What is the best solution?
A. refactor the Java application to use JNDI names and resource references
B. identify a build engineer that has the responsibility of modifying the constant class for
each deployment
C. set your connection properties in a constants class to consolidate connection and
resource parameters
D. identify the environment parameters for connection and resources and make them
readily available to developers
Answer: A
QUESTION: 3
You are architecting an online ordering application with these requirements:
Users access the system over the Internet using HTML.
An email message is sent to the user confirming the order.
Users must log in and are validated using LDAP.
The product catalog is stored in a relational database.
All orders are logged to the internal fulfillment system.
Orders must not be lost.
Which Java EE technology should be used to send orders to the fulfillment system?
310-053
2 http://www.troytec.com
A. JNDI
B. JMS
C. JAX-WS
D. RMI-IIOP
Answer: B
QUESTION: 4
A company has a legacy system that it is going to use Java EE technology to re-engineer.
The legacy solution consists of active server pages and a relational database. The
company is interested in changing DB vendors in the future and this requirement is key to
moving forward. This is a web-based transactional sales system. The company will keep
the relational database schema because it still meets business requirements and will not
require re-engineering. What is the best solution?
A. JSP, JDBC only
B. JSP, servlets, JDBC only
C. JSF, servlets, JPA, EJB3
D. JSF, servlets, DAO, JDBC
Answer: C
QUESTION: 5
A Java EE travel agency application builds flight itineraries and needs to provide runtime
monitoring to external clients. Agency managers need to find out at any given time how
many itineraries have been started but not completed. This information should be made
available to managers at runtime using open-source or commercially available
management tools. The instrumentation should be done with a standard Java EE API.
How should you instrument the application?
A. JPA
B. JMX
C. JMS
D. SNMP
Answer: B
QUESTION: 6
Which Java EE feature helps facilitate migration to SOA?
310-053
3 http://www.troytec.com
A. Stateful session beans can be exposed as web services.
B. Stateless session beans can be exposed as web services.
C. Stateful session beans support local and remote interfaces.
D. Stateless session beans support local and remote interfaces.
Answer: B
QUESTION: 7
A company is in the business of distributing hard candies. The distribution of these
candies is automated and the system that helps track information about candy distribution
is written in Java technology. The business unit for the company has been asking the IT
group to provide a flexible reporting system to track detailed information. A large amount
of data about candy is stored using a DAO layer, but little is used. What is the best
solution for the IT group to implement to provide the most flexibility for the business
unit?
A. refactor the DAOs to include additional static queries to pull information and export a
spreadsheet for the business unit to review
B. implement an ad-hoc query tool exposed using JSF that allows business units to create
queries and produce results in a given format
C. provide a JSP page, which has scriptlets that expose pre-defined queries for the
business unit to execute and display in HTML
D. create a web service that exposes fixed queries invoked by a JSP client that can pull
data from the database and export in a given format
Answer: B
QUESTION: 8
A company architected and developed a Java EE application and now they are having
problems with the scalability of the system. The application uses JSPs and servlets
deployed to a web container, and stateless session beans and DAOs deployed to an EJB
container. The application's non-functional requirement for scalability is to support 500
concurrent users during peak hours of operation. The application can currently support
500 concurrent users, but the response time is 200 percent of what it is acceptable. You
have been hired as an architect and have been assigned to help resolve this problem. The
company's management is concerned with the hardware budgeting. What initial advice
would you give to the company?
A. add another web server
B. start a new project to re-architect the application
C. monitor the application to determine the potential problem areas
310-053
4 http://www.troytec.com
D. add more memory and processors to the hardware hosting the EJB container
Answer: C
QUESTION: 9
What are three web service support features in Java EE? (Choose three.)
A. generating a web service from an MDB
B. generating a Java class from a WSDL file
C. associating a Java class with a WSDL file
D. associating a JMS queue with a WSDL file
E. generating a web service from a stateful session bean
F. generating a web service from a stateless session bean
Answer: B, C, F
QUESTION: 10
Which application would NOT be a good candidate for an EJB-centric implementation of
the business tier?
A. an application that transfers money between accounts
B. a news-oriented web site that receives millions of hits a day
C. an application with business logic that calls third-party web services
D. a small workflow-oriented application to provision and deprovision employee
accounts
Answer: B
QUESTION: 11
DRAG DROP
Click the Task button.
310-053
5 http://www.troytec.com
Answer:
310-053
6 http://www.troytec.com
QUESTION: 12
Which two characteristics are NOT important factors in the selection of a web application
framework for a large project? (Choose two.)
A. complexity of the framework
B. degree of usage in the industry
C. availability of a unit test framework
D. reusability of model and view components
E. separation of concerns afforded by the framework
F. level of integration with common logging frameworks
Answer: C, F
QUESTION: 13
You are designing a company e-Commerce site. The site will be hosted on a single
powerful server that has sufficient CPU, memory, storage, and network bandwidth so that
clustering is not needed. The architecture must maintain session state including a
shopping cart and recent searches. JSP and JPA have already been selected as the
presentation tier and persistence tier implementations, respectively. What do you
recommend as the most appropriate way to maintain session state in the application?
A. an entity bean
B. stateful session beans
C. the HttpSession object
D. a message-driven bean
Answer: C
QUESTION: 14
An existing web application uses JSPs to communicate directly to a database. Small
changes to the database result in business logic changes to many JSPs. The single JSP
developer, who was also the graphic artist, has just quit the project. In addition, the
company needs to add a web services-based interface to the application. You have been
hired as the architect to refactor the web application. Which two changes should you
make to accomplish this? (Choose two.)
A. introduce a separate presentation layer with different views for HTML and XML
B. add an abstraction layer between the database and JSPs to encapsulate business logic
310-053
7 http://www.troytec.com
C. develop a DAO layer to encapsulate the database access that can be used by all the
JSPs
D. add new JSPs for the XML and use <jsp:include> to incorporate the existing business
logic
Answer: A, B
QUESTION: 15
What are two advantages of using encapsulation in a multi-tier architecture? (Choose
two.)
A. Business components inherit behavior from the web container.
B. Complex web container behavior can be hidden behind simple interfaces.
C. Business logic can be modified without modifying objects that depend on it.
D. Database records can be accessed directly from the web tier to improve scalability and
performance.
Answer: B, C
QUESTION: 16
You are architecting a complex multi-tiered web application. Within each tier you have
designed layers, the lowest being the hardware layer and the highest being the application
layer. Which statement is true?
A. Generally, a given layer in one tier of this application should be concerned with the
technology used in the same layer of adjacent tiers.
B. To maximize separation of concerns, a given layer in a tier of this application should
only have knowledge of the adjacent layer in that tier.
C. For any given tier, separation of concerns is fulfilled when a given layer in that tier
knows or needs to know little or nothing of the layers below it.
D. If the layers in one tier of the application have been designed to achieve separation of
concerns, then the remaining tiers also achieve separation of concerns by default.
Answer: B
QUESTION: 17
Which two statements are true about the Flyweight pattern? (Choose two.)
A. It allows a single instance of a class to virtually represent many instances.
310-053
8 http://www.troytec.com
B. When used appropriately it can reduce memory demands on your servers.
C. It allows for many instances of a class to be controlled by a single instance.
D. It allows many tightly related, homogeneous objects to each maintain their own state.
Answer: A, B
QUESTION: 18
What describes the design relationship between session beans and entity beans?
A. aggregation
B. separation of concerns
C. common reuse principle
D. Liskov substitution principle
E. interface segregation principle
Answer: B
QUESTION: 19
A successful web application is used by over two hundred thousand users. Due to this
substantial load, the database is overburdened and fails frequently. All data, including
critical user records and temporary session data, are stored in the database. Because of
resource constraints, a new database system cannot be installed. Which change will
reduce the load on the database?
A. create more entity beans to optimize the interaction with the database
B. refactor the web application to use DAOs to communicate with the database
C. refactor the web application to store temporary session data on the web servers
D. add more web servers to the web tier to distribute the load and reduce the number of
transactions on the database
Answer: C
QUESTION: 20
You are architecting a new Internet-deployed application and you want to restrict access
to parts of the system for security purposes. Which three security restrictions can be
specified in the deployment descriptor according to the servlet API specification
standards? (Choose three.)
A. on page forwarding
310-053
9 http://www.troytec.com
B. on encryption methods
C. based on the role name
D. based on the user name
E. based on the URL pattern
F. based on the HTTP method
Answer: C, E, F
310-053
10 http://www.troytec.com

More Related Content

What's hot

Next-Generation Enterprise Application Development with SpringSource dm Serve...
Next-Generation Enterprise Application Development with SpringSource dm Serve...Next-Generation Enterprise Application Development with SpringSource dm Serve...
Next-Generation Enterprise Application Development with SpringSource dm Serve...Aditya Jha
 
Rajeshwari K A 9+ years as Java Developer and Team lead-1
Rajeshwari K A 9+ years as Java Developer and Team lead-1Rajeshwari K A 9+ years as Java Developer and Team lead-1
Rajeshwari K A 9+ years as Java Developer and Team lead-1Rajeshwari KA
 
[S lide] java_sig-spring-framework
[S lide] java_sig-spring-framework[S lide] java_sig-spring-framework
[S lide] java_sig-spring-frameworkptlong96
 
Sachin Kumar Resume
Sachin Kumar ResumeSachin Kumar Resume
Sachin Kumar ResumeSACHIN KUMAR
 
Kumaresan kaliappan resume
Kumaresan kaliappan resumeKumaresan kaliappan resume
Kumaresan kaliappan resumeSam Walsh
 
Cv Somnath Paramanick Nw Ep
Cv Somnath Paramanick Nw EpCv Somnath Paramanick Nw Ep
Cv Somnath Paramanick Nw EpSomnath Destiny
 
Practical Field Experience: Using Ajax / Dojo with WebSphere Portlet Factory
Practical Field Experience: Using Ajax / Dojo with WebSphere Portlet FactoryPractical Field Experience: Using Ajax / Dojo with WebSphere Portlet Factory
Practical Field Experience: Using Ajax / Dojo with WebSphere Portlet FactoryDavalen LLC
 
Manoj(Java Developer)_Resume
Manoj(Java Developer)_ResumeManoj(Java Developer)_Resume
Manoj(Java Developer)_ResumeVamsi Manoj
 
salesforce_4+_years_exp
salesforce_4+_years_expsalesforce_4+_years_exp
salesforce_4+_years_expSrinivas .
 
Jorge_Guerrero__Resume
Jorge_Guerrero__ResumeJorge_Guerrero__Resume
Jorge_Guerrero__ResumeJorge Guerrero
 
Resume_SachinKumar
Resume_SachinKumarResume_SachinKumar
Resume_SachinKumarSACHIN KUMAR
 

What's hot (20)

Next-Generation Enterprise Application Development with SpringSource dm Serve...
Next-Generation Enterprise Application Development with SpringSource dm Serve...Next-Generation Enterprise Application Development with SpringSource dm Serve...
Next-Generation Enterprise Application Development with SpringSource dm Serve...
 
Resume-Srikanth_Jogula
Resume-Srikanth_JogulaResume-Srikanth_Jogula
Resume-Srikanth_Jogula
 
Rajeshwari K A 9+ years as Java Developer and Team lead-1
Rajeshwari K A 9+ years as Java Developer and Team lead-1Rajeshwari K A 9+ years as Java Developer and Team lead-1
Rajeshwari K A 9+ years as Java Developer and Team lead-1
 
Lec2 ecom fall16
Lec2 ecom fall16Lec2 ecom fall16
Lec2 ecom fall16
 
rahuljain_CV
rahuljain_CVrahuljain_CV
rahuljain_CV
 
Resume--Nilesh kumar singh
Resume--Nilesh kumar singhResume--Nilesh kumar singh
Resume--Nilesh kumar singh
 
UnnivmNew
UnnivmNewUnnivmNew
UnnivmNew
 
resume_abdul_up
resume_abdul_upresume_abdul_up
resume_abdul_up
 
[S lide] java_sig-spring-framework
[S lide] java_sig-spring-framework[S lide] java_sig-spring-framework
[S lide] java_sig-spring-framework
 
Sachin Kumar Resume
Sachin Kumar ResumeSachin Kumar Resume
Sachin Kumar Resume
 
Kumaresan kaliappan resume
Kumaresan kaliappan resumeKumaresan kaliappan resume
Kumaresan kaliappan resume
 
Cv Somnath Paramanick Nw Ep
Cv Somnath Paramanick Nw EpCv Somnath Paramanick Nw Ep
Cv Somnath Paramanick Nw Ep
 
Practical Field Experience: Using Ajax / Dojo with WebSphere Portlet Factory
Practical Field Experience: Using Ajax / Dojo with WebSphere Portlet FactoryPractical Field Experience: Using Ajax / Dojo with WebSphere Portlet Factory
Practical Field Experience: Using Ajax / Dojo with WebSphere Portlet Factory
 
Manoj(Java Developer)_Resume
Manoj(Java Developer)_ResumeManoj(Java Developer)_Resume
Manoj(Java Developer)_Resume
 
Pankaj_Sharma QA_CV
Pankaj_Sharma QA_CVPankaj_Sharma QA_CV
Pankaj_Sharma QA_CV
 
salesforce_4+_years_exp
salesforce_4+_years_expsalesforce_4+_years_exp
salesforce_4+_years_exp
 
Deep_Kamal
Deep_KamalDeep_Kamal
Deep_Kamal
 
Jorge_Guerrero__Resume
Jorge_Guerrero__ResumeJorge_Guerrero__Resume
Jorge_Guerrero__Resume
 
Resume_SachinKumar
Resume_SachinKumarResume_SachinKumar
Resume_SachinKumar
 
Mahavir Jain
Mahavir JainMahavir Jain
Mahavir Jain
 

Similar to 310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade

Assess CAS-004 Study Material For Comptia Exam.pdf
Assess CAS-004 Study Material For Comptia Exam.pdfAssess CAS-004 Study Material For Comptia Exam.pdf
Assess CAS-004 Study Material For Comptia Exam.pdfshirlybaker1
 
Further develop Your CAS-004 Dumps By Using The Study Kit.pdf
Further develop Your CAS-004 Dumps By Using The Study Kit.pdfFurther develop Your CAS-004 Dumps By Using The Study Kit.pdf
Further develop Your CAS-004 Dumps By Using The Study Kit.pdfshirlybaker1
 
Microsoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpsMicrosoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpslilylucy
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 
Resume Partha Roy
Resume Partha RoyResume Partha Roy
Resume Partha RoyPartha Roy
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 
8 years of experience in .Net web technologies
8 years of experience in .Net web technologies8 years of experience in .Net web technologies
8 years of experience in .Net web technologiesPartha Roy
 
Swapnil_Shelke_SAP_EP_Developer_2016
Swapnil_Shelke_SAP_EP_Developer_2016Swapnil_Shelke_SAP_EP_Developer_2016
Swapnil_Shelke_SAP_EP_Developer_2016Swapnil Shelke
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web designsmumbahelp
 

Similar to 310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade (20)

000 239
000 239000 239
000 239
 
Sem4 mis
Sem4 misSem4 mis
Sem4 mis
 
Assess CAS-004 Study Material For Comptia Exam.pdf
Assess CAS-004 Study Material For Comptia Exam.pdfAssess CAS-004 Study Material For Comptia Exam.pdf
Assess CAS-004 Study Material For Comptia Exam.pdf
 
Further develop Your CAS-004 Dumps By Using The Study Kit.pdf
Further develop Your CAS-004 Dumps By Using The Study Kit.pdfFurther develop Your CAS-004 Dumps By Using The Study Kit.pdf
Further develop Your CAS-004 Dumps By Using The Study Kit.pdf
 
Microsoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumpsMicrosoft MCPD 70-492 it examen dumps
Microsoft MCPD 70-492 it examen dumps
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
Vcaw5102013
Vcaw5102013Vcaw5102013
Vcaw5102013
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
1z0-997-21.pdf
1z0-997-21.pdf1z0-997-21.pdf
1z0-997-21.pdf
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
Suresh Resume
Suresh ResumeSuresh Resume
Suresh Resume
 
Resume Partha Roy
Resume Partha RoyResume Partha Roy
Resume Partha Roy
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
8 years of experience in .Net web technologies
8 years of experience in .Net web technologies8 years of experience in .Net web technologies
8 years of experience in .Net web technologies
 
Swapnil_Shelke_SAP_EP_Developer_2016
Swapnil_Shelke_SAP_EP_Developer_2016Swapnil_Shelke_SAP_EP_Developer_2016
Swapnil_Shelke_SAP_EP_Developer_2016
 
Mi0041 java and web design
Mi0041  java and web designMi0041  java and web design
Mi0041 java and web design
 
70 499
70 49970 499
70 499
 
resume
resumeresume
resume
 

More from Isabella789

T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...Isabella789
 
T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...Isabella789
 
1Z0-400 Exam-Oracle Communications Session Border Controller
1Z0-400 Exam-Oracle Communications Session Border Controller1Z0-400 Exam-Oracle Communications Session Border Controller
1Z0-400 Exam-Oracle Communications Session Border ControllerIsabella789
 
2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...
2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...
2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...Isabella789
 
HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR)
HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR) HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR)
HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR) Isabella789
 
210-250 Exam-Understanding Cisco Cybersecurity Fundamentals
210-250 Exam-Understanding Cisco Cybersecurity Fundamentals 210-250 Exam-Understanding Cisco Cybersecurity Fundamentals
210-250 Exam-Understanding Cisco Cybersecurity Fundamentals Isabella789
 
70 334 exam-core solutions of microsoft skype for business (beta)
70 334 exam-core solutions of microsoft skype for business (beta)70 334 exam-core solutions of microsoft skype for business (beta)
70 334 exam-core solutions of microsoft skype for business (beta)Isabella789
 
400-351 Exam-CCIE Wireless
400-351 Exam-CCIE Wireless  400-351 Exam-CCIE Wireless
400-351 Exam-CCIE Wireless Isabella789
 
1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration
1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration
1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administrationIsabella789
 
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocpIsabella789
 
70-414 exam-implementing an advanced server infrastructure
70-414 exam-implementing an advanced server infrastructure70-414 exam-implementing an advanced server infrastructure
70-414 exam-implementing an advanced server infrastructureIsabella789
 
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software ReleaseIsabella789
 
210 250 exam-understanding cisco cybersecurity fundamentals
210 250 exam-understanding cisco cybersecurity fundamentals210 250 exam-understanding cisco cybersecurity fundamentals
210 250 exam-understanding cisco cybersecurity fundamentalsIsabella789
 
1z0-204 Exam-Oracle EBS R12: E-Business Essentials
1z0-204 Exam-Oracle EBS R12: E-Business Essentials 1z0-204 Exam-Oracle EBS R12: E-Business Essentials
1z0-204 Exam-Oracle EBS R12: E-Business Essentials Isabella789
 
1z0 061 exam-oracle database 12c sql fundamentals
1z0 061 exam-oracle database 12c sql fundamentals1z0 061 exam-oracle database 12c sql fundamentals
1z0 061 exam-oracle database 12c sql fundamentalsIsabella789
 
1y0 230 exam-citrix netscaler 12 essentials
1y0 230 exam-citrix netscaler 12 essentials1y0 230 exam-citrix netscaler 12 essentials
1y0 230 exam-citrix netscaler 12 essentialsIsabella789
 
Pmi acp exa- pmi agile certified practitioner
Pmi acp exa- pmi agile certified practitionerPmi acp exa- pmi agile certified practitioner
Pmi acp exa- pmi agile certified practitionerIsabella789
 
1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professionalIsabella789
 
200-355 Exam-Implementing Cisco Wireless Network Fundamentals
200-355 Exam-Implementing Cisco Wireless Network Fundamentals 200-355 Exam-Implementing Cisco Wireless Network Fundamentals
200-355 Exam-Implementing Cisco Wireless Network Fundamentals Isabella789
 
Jn0 420 exam-jncis-dev ops
Jn0 420 exam-jncis-dev opsJn0 420 exam-jncis-dev ops
Jn0 420 exam-jncis-dev opsIsabella789
 

More from Isabella789 (20)

T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...
 
T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...T7 Exam-International Financial Reporting Standards for Compensation Professi...
T7 Exam-International Financial Reporting Standards for Compensation Professi...
 
1Z0-400 Exam-Oracle Communications Session Border Controller
1Z0-400 Exam-Oracle Communications Session Border Controller1Z0-400 Exam-Oracle Communications Session Border Controller
1Z0-400 Exam-Oracle Communications Session Border Controller
 
2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...
2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...
2V0-622 Exam-VMware Certified Professional 6.5 – Data Center Virtualization (...
 
HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR)
HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR) HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR)
HP2-B129 Exam-HP Document Solutions Technical Fundamentals (LAR)
 
210-250 Exam-Understanding Cisco Cybersecurity Fundamentals
210-250 Exam-Understanding Cisco Cybersecurity Fundamentals 210-250 Exam-Understanding Cisco Cybersecurity Fundamentals
210-250 Exam-Understanding Cisco Cybersecurity Fundamentals
 
70 334 exam-core solutions of microsoft skype for business (beta)
70 334 exam-core solutions of microsoft skype for business (beta)70 334 exam-core solutions of microsoft skype for business (beta)
70 334 exam-core solutions of microsoft skype for business (beta)
 
400-351 Exam-CCIE Wireless
400-351 Exam-CCIE Wireless  400-351 Exam-CCIE Wireless
400-351 Exam-CCIE Wireless
 
1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration
1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration
1 y0 311 exam-citrix xenapp and xendesktop 7.15 ltsr advanced administration
 
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
1z0 034 exam-upgrade oracle9i10g oca to oracle database 11g ocp
 
70-414 exam-implementing an advanced server infrastructure
70-414 exam-implementing an advanced server infrastructure70-414 exam-implementing an advanced server infrastructure
70-414 exam-implementing an advanced server infrastructure
 
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
1Z0-027 Exam-Oracle Exadata Database Machine Administration, Software Release
 
210 250 exam-understanding cisco cybersecurity fundamentals
210 250 exam-understanding cisco cybersecurity fundamentals210 250 exam-understanding cisco cybersecurity fundamentals
210 250 exam-understanding cisco cybersecurity fundamentals
 
1z0-204 Exam-Oracle EBS R12: E-Business Essentials
1z0-204 Exam-Oracle EBS R12: E-Business Essentials 1z0-204 Exam-Oracle EBS R12: E-Business Essentials
1z0-204 Exam-Oracle EBS R12: E-Business Essentials
 
1z0 061 exam-oracle database 12c sql fundamentals
1z0 061 exam-oracle database 12c sql fundamentals1z0 061 exam-oracle database 12c sql fundamentals
1z0 061 exam-oracle database 12c sql fundamentals
 
1y0 230 exam-citrix netscaler 12 essentials
1y0 230 exam-citrix netscaler 12 essentials1y0 230 exam-citrix netscaler 12 essentials
1y0 230 exam-citrix netscaler 12 essentials
 
Pmi acp exa- pmi agile certified practitioner
Pmi acp exa- pmi agile certified practitionerPmi acp exa- pmi agile certified practitioner
Pmi acp exa- pmi agile certified practitioner
 
1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional1z0 851 exam-java standard edition 6 programmer certified professional
1z0 851 exam-java standard edition 6 programmer certified professional
 
200-355 Exam-Implementing Cisco Wireless Network Fundamentals
200-355 Exam-Implementing Cisco Wireless Network Fundamentals 200-355 Exam-Implementing Cisco Wireless Network Fundamentals
200-355 Exam-Implementing Cisco Wireless Network Fundamentals
 
Jn0 420 exam-jncis-dev ops
Jn0 420 exam-jncis-dev opsJn0 420 exam-jncis-dev ops
Jn0 420 exam-jncis-dev ops
 

Recently uploaded

MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 

Recently uploaded (20)

MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 

310-053 Exam-Sun Certified Enterprise Architect, Java, EE5 Upgrade

  • 1. Demo Edition © 2012 - 2013 Test Killer, LTD All Rights Reserved Sun Certified Enterprise Architect, Java, EE5 Upgrade Exam Exam: 310-053 310-053 1 http://www.troytec.com
  • 2. QUESTION: 1 You are asked to architect an SOA solution that leverages Java web services. The architecture needs to be flexible and allow for the SOAP 1.1, SOAP 1.2, and REST implementations. Which Java EE technology should you use? A. JAXP B. JAXB C. JAX-WS D. JAX-RPC Answer: C QUESTION: 2 You work for a small IT shop. The developers are responsible for deploying production applications. All of the connection and resource parameters are distributed in the Java source code. Your IT shop has a limited infrastructure so there have been few issues with pushing production applications. Your IT shop has been purchased and is now reselling Java products to customers. You now have dedicated development, testing, staging, and production environments. A new requirement states that these applications must support rapid deployment to each environment. What is the best solution? A. refactor the Java application to use JNDI names and resource references B. identify a build engineer that has the responsibility of modifying the constant class for each deployment C. set your connection properties in a constants class to consolidate connection and resource parameters D. identify the environment parameters for connection and resources and make them readily available to developers Answer: A QUESTION: 3 You are architecting an online ordering application with these requirements: Users access the system over the Internet using HTML. An email message is sent to the user confirming the order. Users must log in and are validated using LDAP. The product catalog is stored in a relational database. All orders are logged to the internal fulfillment system. Orders must not be lost. Which Java EE technology should be used to send orders to the fulfillment system? 310-053 2 http://www.troytec.com
  • 3. A. JNDI B. JMS C. JAX-WS D. RMI-IIOP Answer: B QUESTION: 4 A company has a legacy system that it is going to use Java EE technology to re-engineer. The legacy solution consists of active server pages and a relational database. The company is interested in changing DB vendors in the future and this requirement is key to moving forward. This is a web-based transactional sales system. The company will keep the relational database schema because it still meets business requirements and will not require re-engineering. What is the best solution? A. JSP, JDBC only B. JSP, servlets, JDBC only C. JSF, servlets, JPA, EJB3 D. JSF, servlets, DAO, JDBC Answer: C QUESTION: 5 A Java EE travel agency application builds flight itineraries and needs to provide runtime monitoring to external clients. Agency managers need to find out at any given time how many itineraries have been started but not completed. This information should be made available to managers at runtime using open-source or commercially available management tools. The instrumentation should be done with a standard Java EE API. How should you instrument the application? A. JPA B. JMX C. JMS D. SNMP Answer: B QUESTION: 6 Which Java EE feature helps facilitate migration to SOA? 310-053 3 http://www.troytec.com
  • 4. A. Stateful session beans can be exposed as web services. B. Stateless session beans can be exposed as web services. C. Stateful session beans support local and remote interfaces. D. Stateless session beans support local and remote interfaces. Answer: B QUESTION: 7 A company is in the business of distributing hard candies. The distribution of these candies is automated and the system that helps track information about candy distribution is written in Java technology. The business unit for the company has been asking the IT group to provide a flexible reporting system to track detailed information. A large amount of data about candy is stored using a DAO layer, but little is used. What is the best solution for the IT group to implement to provide the most flexibility for the business unit? A. refactor the DAOs to include additional static queries to pull information and export a spreadsheet for the business unit to review B. implement an ad-hoc query tool exposed using JSF that allows business units to create queries and produce results in a given format C. provide a JSP page, which has scriptlets that expose pre-defined queries for the business unit to execute and display in HTML D. create a web service that exposes fixed queries invoked by a JSP client that can pull data from the database and export in a given format Answer: B QUESTION: 8 A company architected and developed a Java EE application and now they are having problems with the scalability of the system. The application uses JSPs and servlets deployed to a web container, and stateless session beans and DAOs deployed to an EJB container. The application's non-functional requirement for scalability is to support 500 concurrent users during peak hours of operation. The application can currently support 500 concurrent users, but the response time is 200 percent of what it is acceptable. You have been hired as an architect and have been assigned to help resolve this problem. The company's management is concerned with the hardware budgeting. What initial advice would you give to the company? A. add another web server B. start a new project to re-architect the application C. monitor the application to determine the potential problem areas 310-053 4 http://www.troytec.com
  • 5. D. add more memory and processors to the hardware hosting the EJB container Answer: C QUESTION: 9 What are three web service support features in Java EE? (Choose three.) A. generating a web service from an MDB B. generating a Java class from a WSDL file C. associating a Java class with a WSDL file D. associating a JMS queue with a WSDL file E. generating a web service from a stateful session bean F. generating a web service from a stateless session bean Answer: B, C, F QUESTION: 10 Which application would NOT be a good candidate for an EJB-centric implementation of the business tier? A. an application that transfers money between accounts B. a news-oriented web site that receives millions of hits a day C. an application with business logic that calls third-party web services D. a small workflow-oriented application to provision and deprovision employee accounts Answer: B QUESTION: 11 DRAG DROP Click the Task button. 310-053 5 http://www.troytec.com
  • 7. QUESTION: 12 Which two characteristics are NOT important factors in the selection of a web application framework for a large project? (Choose two.) A. complexity of the framework B. degree of usage in the industry C. availability of a unit test framework D. reusability of model and view components E. separation of concerns afforded by the framework F. level of integration with common logging frameworks Answer: C, F QUESTION: 13 You are designing a company e-Commerce site. The site will be hosted on a single powerful server that has sufficient CPU, memory, storage, and network bandwidth so that clustering is not needed. The architecture must maintain session state including a shopping cart and recent searches. JSP and JPA have already been selected as the presentation tier and persistence tier implementations, respectively. What do you recommend as the most appropriate way to maintain session state in the application? A. an entity bean B. stateful session beans C. the HttpSession object D. a message-driven bean Answer: C QUESTION: 14 An existing web application uses JSPs to communicate directly to a database. Small changes to the database result in business logic changes to many JSPs. The single JSP developer, who was also the graphic artist, has just quit the project. In addition, the company needs to add a web services-based interface to the application. You have been hired as the architect to refactor the web application. Which two changes should you make to accomplish this? (Choose two.) A. introduce a separate presentation layer with different views for HTML and XML B. add an abstraction layer between the database and JSPs to encapsulate business logic 310-053 7 http://www.troytec.com
  • 8. C. develop a DAO layer to encapsulate the database access that can be used by all the JSPs D. add new JSPs for the XML and use <jsp:include> to incorporate the existing business logic Answer: A, B QUESTION: 15 What are two advantages of using encapsulation in a multi-tier architecture? (Choose two.) A. Business components inherit behavior from the web container. B. Complex web container behavior can be hidden behind simple interfaces. C. Business logic can be modified without modifying objects that depend on it. D. Database records can be accessed directly from the web tier to improve scalability and performance. Answer: B, C QUESTION: 16 You are architecting a complex multi-tiered web application. Within each tier you have designed layers, the lowest being the hardware layer and the highest being the application layer. Which statement is true? A. Generally, a given layer in one tier of this application should be concerned with the technology used in the same layer of adjacent tiers. B. To maximize separation of concerns, a given layer in a tier of this application should only have knowledge of the adjacent layer in that tier. C. For any given tier, separation of concerns is fulfilled when a given layer in that tier knows or needs to know little or nothing of the layers below it. D. If the layers in one tier of the application have been designed to achieve separation of concerns, then the remaining tiers also achieve separation of concerns by default. Answer: B QUESTION: 17 Which two statements are true about the Flyweight pattern? (Choose two.) A. It allows a single instance of a class to virtually represent many instances. 310-053 8 http://www.troytec.com
  • 9. B. When used appropriately it can reduce memory demands on your servers. C. It allows for many instances of a class to be controlled by a single instance. D. It allows many tightly related, homogeneous objects to each maintain their own state. Answer: A, B QUESTION: 18 What describes the design relationship between session beans and entity beans? A. aggregation B. separation of concerns C. common reuse principle D. Liskov substitution principle E. interface segregation principle Answer: B QUESTION: 19 A successful web application is used by over two hundred thousand users. Due to this substantial load, the database is overburdened and fails frequently. All data, including critical user records and temporary session data, are stored in the database. Because of resource constraints, a new database system cannot be installed. Which change will reduce the load on the database? A. create more entity beans to optimize the interaction with the database B. refactor the web application to use DAOs to communicate with the database C. refactor the web application to store temporary session data on the web servers D. add more web servers to the web tier to distribute the load and reduce the number of transactions on the database Answer: C QUESTION: 20 You are architecting a new Internet-deployed application and you want to restrict access to parts of the system for security purposes. Which three security restrictions can be specified in the deployment descriptor according to the servlet API specification standards? (Choose three.) A. on page forwarding 310-053 9 http://www.troytec.com
  • 10. B. on encryption methods C. based on the role name D. based on the user name E. based on the URL pattern F. based on the HTTP method Answer: C, E, F 310-053 10 http://www.troytec.com