Welcome to CertificationDumps.com !

Are u looking to Pass your Certification Exam? Then you have came to the right place here you will find real exam questions of any exam taken from the testing center and aslo links to sites that sell them. So now passing your certification exam has become much easier than before all you have to do is memorize the questions you will see exactly the same questions in the real exam. In today world time is money so by this not only you save time plus you aslo save yourself the hassale of failing

November 22 2009

BEA 0B0-110 Dumps

BEA Certified Developer: WebLogic Portal 9/10

  • Exam Number/Code : 0B0-110
  • Exam Name : BEA Certified Developer: WebLogic Portal 9/10
  • Questions and Answers : 197 Q&As

Download Pass4sure 0B0-110 Dumps from the link below
Download CertifyMe 0B0-110 Dumps from the link below
Download Testking 0B0-110 Dumps from the link below


Download BEA 0B0-110 Dumps


November 22 2009

BEA 0B0-109 Dumps

WebLogic Server 9

  • Exam Number/Code : 0B0-109
  • Exam Name : WebLogic Server 9
  • Questions and Answers : 120 Q&As

Download Pass4sure 0B0-109 Dumps from the link below
Download CertifyMe 0B0-109 Dumps from the link below
Download Testking 0B0-109 Dumps from the link below


Download BEA 0B0-109 Dumps



PrepKing.com BEA 0B0-109 Sample Questions

Exam : BEA 0B0-109
Title : Web Logic Server 9

. A system exception is one that indicates that the business method of an EJB was prevented from
successfully executing because of some system-level error. Which of these statements is true about a
system exception?
A.It is a subclass of RemoteException or RuntimeException
B.It is propagated to clients as a RemoteException
C.It is caught and logged by the container
D.All of the above
Answer: D
2. What is the command to create a new web application archive (.war) file?
A.jar -Mvf someArchive.war *
B.jar -tvf someArchive.war *
C.jar -vf someArchive.war *
D.jar -cvf someArchive.war *
Answer: D
3. If cookies are disabled on the client browser, which of these methods on the HttpServletResponse object
can help in rewriting the URL with a session ID?
A.session.encodeURL()
B.session.writeURL()
C.session.encodeSessionIDinURL()
D.session.encodeSessionID()
Answer: A
4. Consider the following code snippet.
Context ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup(“SomeDatasource”);
Which of these statements gets a JDBC connection successfully?
A.Connection con = ds.createConnection();
B.Connection con = ds.getConnection();
C.Connection con = ds.retrieveConnection();
D.Connection con = ctx.getConnection();
Answer: B
5. Entity bean activation involves
A.EJB Container providing a primary key identity to a pooled EJB
B.EJB Container moves an EJB from secondary storage to main memory
C.EJB Container creates a new EJB instance and adds to the active pool
D.None of the above
Answer: A
6. Which of these
tags forces the EJB to be executed within a transaction started either by
the client or container?
A.Supports
B.Required
C.RequiresNew
D.Mandatory
Answer: B
7. Which of these statements is not true about Design Patterns?
A.They are a non-repeatable process or design addressing a specific issue or a problem in the
development of a system.
B.They are predictable in their function and are consistent in their pros and cons.
C.They are concepts that allow for a common method to quickly and effectively communicate complex
ideology to others.
D.They allow for the accelerated education of the concept for those new to it.
Answer: A
8. Applications deployed with J2EE technologies are:
i. Deployable in any compliant application server
ii. Adherent to specification guidelines
iii. Written in Java
A.ii, iii
B.i, ii, iii
C.iii, i
D.i, ii
Answer: B
9. When a reliable web service method is invoked asynchronously, which of these scenarios will happen?
A.The results will be sent back in the same reliable sequence as the method invocation
B.The results will be sent back in another reliable sequence
C.The results will not be sent in a reliable sequence
D.None of the above
Answer: B
10. A reliable WebLogic web service provides which of the following delivery assurances?
A.AtLeastOnce
B.ExactlyOnce
C.MostlyOnce
D.AtMostOnce
Answer: AB
11. What is the JNDI name of the default queue used for configuring web service reliable messaging in
WebLogic server?
A.weblogic.wsee.DefaultQueue
B.weblogic.DefaultQueue
C.weblogic.wsee
D.wsee.DefaultQueue
Answer: A
12. What does a web service generate if an error occurs during the processing of a request?
A.A Java Exception
B.java.io.Exception
C.A SOAP Fault
D.None of the above
Answer: C
13. Which of these are valid descriptive sub-elements of a SOAP fault?
A.faultInteger
B.faultcode
C.faultstring
D.faultactor
Answer: BCD
14. When a Web service throws an exception, how does a client that makes use of a JAX-RPC stub receive
it?
A.As a RemoteException
B.As a SOAPFaultException
C.As a NullPointerException
D.As a WebServiceException
Answer: A
15. A container or application server can optimize performance by pooling EJBs that are considered to be
identical. Which or these parameters can be used to control the size of this EJB pool?
A.
B.
C.
D.
Answer: A
16. Transaction configuration can have a big impact on the performance of EJBs. Which of these
statements is true?
i. Too many fine-grain transactions generate excessive traffic to transaction and resource managers ii. Too
many coarse-grain transactions may block other clients accessing the same resources
A.i
B.ii
C.i, ii
D.None of the above
Answer: C
17. Which of these is the least performing EJB concurrency strategies?
A.Database
B.Exclusive
C.ReadOnly
D.Optimistic
Answer: B
18. Which of these strategies can improve performance of a Container Managed Entity EJB?
A.Avoiding Compound Keys
B.Field Groups
C.Choosing a proper concurrency strategy
D.All of the above
Answer: D
19. Which of the following statements are true about JMX?
A.It defines an infrastructure to manage a driver from native programs
B.It decouples the managed device from the management tools
C.MBeans are the building blocks of JMX
D.All of the above
Answer: BC
20. Which of these session parameters would impact the performance of a Web Application?
i. InvalidationIntervalSecs
ii. TimeoutSecs
iii. CacheSize
A.i
B.ii, iii
C.i, ii, iii
D.i, ii
Answer: C
21. Applications Exceptions aid in notifying an EJB client about a business logic error. Which of these
statements about Application Exceptions in true?
i. Is a subclass of java.lang.Exception
ii. Is not a subclass of java.rmi.RemoteException
iii. Is not a subclass of java.lang.RuntimeException
A.i, ii
B.ii, iii
C.i, ii, iii
D.i, iii
Answer: C
22. Consider the following Remote Interface code.
public void withdraw(int amount) throws RemoteException, NotEnoughFundsException;
Which of the following statements best suits the corresponding Bean implementation?
A.public void withdraw(int amount) throws NotEnoughFundsException {
if(balance – amount < 0)
throw new NotEnoughFundsException("Insufficient Funds");
else
balance -= amount;
}
B.public void withdraw(int amount) {
if(balance - amount < 0)
throw new NotEnoughFundsException("Insufficient Funds");
else
balance -= amount;
}
C.public void withdraw(int amount) throws RemoteException {
if(balance - amount < 0)
throw new NotEnoughFundsException("Insufficient Funds");
else
balance -= amount;
}
D.public void withdraw(int amount) throws Exception {
if(balance - amount < 0)
throw new NotEnoughFundsException("Insufficient Funds");
else
balance -= amount;
}
Answer: A
23. Which of these JSP directives is used to call another JSP when an exception occurs?
A.<%@ page error="myErrorPage.jsp" %>
B.<%@ page page="myErrorPage.jsp" %>
C.<%@ page errorPage="myErrorPage.jsp" %>
D.<%@ page exceptionPage="myErrorPage.jsp" %>
Answer: C
24. You can specify pages to gracefully handle HTTP errors or Java Exceptions by using which of the
following web.xml elements?
A.
B.
C.
D.
Answer: A
25. Which one of these can be used to extend the Eclipse platform?
A.Extension Development Kit
B.Extension Development Tools
C.Plug-in Development Environment
D.Java Development Kit
Answer: C
26. The Eclipse desktop development environment is called
A.Workshop
B.Workbench
C.Workspace
D.Workarea
Answer: B
27. Which one of these statements about the Eclipse IDE is incorrect?
A.A Workbench window contains one or more perspectives.
B.Perspectives consist of an editor area and one or more views.
C.Editor area tabs indicate the names of resources that are currently open for editing. An Asterisk(*)
indicates that the resource is saved.
D.Views provide alternative presentations and ways to navigate information in a workbench.
Answer: C
28. Which of these parameters can be specified while creating a new Dynamic Web Project?
i. Context Root
ii. Source Folder
iii. Web Content Folder
A.i
B.i, ii, iii


Download BEA 0B0-109 Dumps


November 22 2009

BEA 0B0-104 Dumps

BEA8.1 Certified Adminsitrator:System Administration

  • Exam Number/Code : 0B0-104
  • Exam Name : BEA8.1 Certified Adminsitrator:System Administration
  • Questions and Answers : 69 Q&As

Download Pass4sure 0B0-104 Dumps from the link below
Download CertifyMe 0B0-104 Dumps from the link below
Download Testking 0B0-104 Dumps from the link below


Download BEA 0B0-104 Dumps



PrepKing.com BEA 0B0-104 Sample Questions

Exam : BEA Systems 0B0-104
Title : BEA8.1 Certified Administrator:

1. Consider a WebLogic Domain with an (external) LDAP Authentication Provider and multiple
Authorization Providers. The Default WebLogic Auditing Provider is enabled. Authorization Providers can
return a limited set of responses to requests for resource access. What are the possible responses from an
Authorization Provider?
A. PERMIT , DENY
B. OVERRIDE , PERMIT , DENY
C. CONDITIONAL , PERMIT , DENY
D. PERMIT , DENY , ABSTAIN
E. PERMIT , PERMIT_ONCE , DENY_ONCE , DENY
Answer: D
2. What happens to a JMS message that times out in a Queue?
A. The message is immediately delivered to the consumer.
B. The message is immediately returned to the producer.
C. The message is handled according to the expiration policy that is defined for the Queue.
D. The message is sent to a distributed destination.
E. The message is persisted to a JMS store.
Answer: C
3. A Web tier cluster is being created that will provide HttpSession failover with reasonable safety and good
scaling ability. The HttpSessions will contain serialized Java objects. Eight WebLogic server instances will
be running on four physical machines; there will be two WebLogic server instances per physical machine.
Part of the cluster, containing two physical machines, is located in one room; the other two machines are
located in another room. In this cluster, the Administration Server is located on its own physical machine. If
the Administration Server is not running, how can the Managed Servers start?
A. The Managed Servers must run in Managed Server Independence (MSI) mode.
B. The domain files must be copied to each Managed Server.
C. The MSI file must be present locally on each Managed Server.
D. A Managed Server CANNOT be started without an Administration Server.
E. A and C
Answer: E
4. In order to migrate a failed Administration Server to another machine, which of the following is required?
A. Application data must be copied to (or shared with) the new machine.
B. You must use the NodeManager MIGRATE command, through weblogic.Admin or JMX.
C. Configuration and security data must be copied to (or shared with) the new machine.
D. Each Managed Server must be shut down and restarted.
E. A and C
Answer: E
5. Which of the following methods can CANNOT be used to determine the version number and service pack
of the currently-executing WebLogic Server instance?
A. The WebLogic Console
B. The version.txt file
C. weblogic.Admin
D. The Server log
E. A and B
Answer: B
6. To configure a Network Channel, which of the following are required?
A. Name, Multicast Address, Listen Address
B. Name, Protocol and Listen Port
C. Name, Listen Address and Listen Port
D. Name, Multicast Address, Listen Address and Listen Port
E. Name, Protocol, Listen Address and Listen Port
Answer: E
7. Which of the following accurately describes a message producer sending messages to a JMS
Distributed Queue with round-robin style Load Balancing enabled?
A. All messages are sent on all member queues.
B. All messages are sent on one queue.
C. Messages are distributed, round-robin style, among the member queues.
D. The first message is distributed, round-robin style, among the member queues; subsequent messages
are sent on one queue.
E. A and C
Answer: C
8. Which of the following is NOT a security feature of NodeManager?
A. Limiting connections to specific hosts
B. Password expiration
C. Transport security with SSL
D. Digital Certificates for authentication
E. Reverse DNS for host verification
Answer: B
9. A cluster is defined that consists of six WebLogic servers running an enterprise application: a Web
application and a JAR file with some EJBs. In-memory session replication is enabled for the Web
application and the EJBs. All the EJBs are clusterable (home and remote stubs). The round-robin algorithm
is used to balance the load across the servers. If the Web application acquires a remote interface to a
Stateless Session Bean and calls one of its methods three times, which of the following is true?
A. Each method call is invoked on an EJB instance that is on the same server as the Web application
B. Each method call is invoked on the same EJB instance, on the same server as the Web application.
C. The method calls are distributed, round-robin style, among the servers.
D. The behavior depends on the idempotence of the EJB’s method.
E. The behavior depends on whether JNDI replication is enabled.
Answer: A
10. Why would you consider configuring a Domain-wide Administration Port?
A. To segregate administrative traffic
B. So that each server does not require a unique administration port
C. To force SSL access to the WebLogic Console
D. To allow VPN access to the Administration Server
E. A and C
Answer: E
11. Which of the following is a valid WebLogic server error number?
A. ERROR-000351
B. SERVER-ERROR-000351
C. WLS-000351
D. BEA-000351
E. CRITICAL-000351
Answer: D
12. A Web application is deployed from a WAR file named AppA.war . How can you set the application
context to MyApp ?
A. Specify that the Web application is the default Web application
B. Deploy in an Enterprise Application, and set the context root to MyApp
C. Set the application external DNS name in the Administration Console.
D. Undeploy the application, rename the file MyApp.war , and redeploy.
E. B or D
Answer: E
13. Consider a JDBC multi-pool with three connection pools (Pool A, Pool B and Pool C). The distribution
algorithm is set to Load Balancing. You attempt to acquire a connection to Pool A. Under what
circumstances do you get a connection to Pool B or Pool C?
A. When the connection to Pool A fails a connection test
B. When all the connections in Pool A are in use
C. When Pool B or Pool C is next in the round-robin algorithm
D. You never get a connection to Pool B or Pool C.
E. A and B
Answer: C
14. The default Security Service Providers (SSPs) of WebLogic Server support parameterized, or
rule-based, roles. Which of the following criteria can be used to define a role?
A. Group membership
B. Originating IP address
C. HTTP header information
D. Time of day
E. A and D
Answer: E
15. WebLogic allows you to configure HTTP access logs. Which of the following is configurable?
A. Whether to use a single domain access log or individual server logs.
B. Whether to use WebLogic or Common Log Format logs.
C. Whether to allow logs to grow indefinitely or rotate log files.
D. Whether to timestamp log entries.
E. A and C
Answer: C
16. A WebLogic server Web tier cluster has four managed WebLogic servers with a Web application
deployed in expanded form (not in a WAR file) that contains frequently-modified resources, such as JSPs
and HTML pages. Refer to the cluster described above. You are using a separate tool to manage Web
applications; the tool updates all the files for the Web applications for each Managed Server. There is no
shared file system; the tool puts the Web application files at /usr/local/webApplications . To allow this to
work:
A. For each Managed Server, set the stage mode to nostage and the stage directory to
/usr/local/webApplications .
B. Deploy the application to the cluster; set the stage mode to external stage .
C. Deploy the application to the cluster; set the stage mode to external stage ; move the domain files to
/usr/local/webApplications .
D. For each Managed Server, set the stage mode to external stage and the stage directory to
/usr/local/webApplications .
E. For each Managed Server, set the stage mode to none .
Answer: D
17. During server startup, a JDBC connection pool fails to deploy. What level of error message is present in
the logs?
A. CRITICAL
B. WARNING
C. INFO
D. NOTICE
E. ERROR
Answer: E
18. Consider a WebLogic Domain that consists of an Administration Server and four clustered Managed
Servers. Each server is running on its own hardware using JVM 1.4.1. The Managed Servers are running
on dedicated dual-CPU servers. You have been assigned to tune this WebLogic deployment. While
monitoring garbage collection on a Managed Server, you notice unacceptably long pauses. What is the best
way to attempt to reduce the pauses?
A. Increase the heap size.
B. Tune the garbage collection method.
C. Add more servers to the cluster.
D. Run more servers per machine.
E. Both A and C.
Answer: B
19. Which of the following accurately describes the WebLogic SNMP Agent?
A. The SNMP Agent is a separate Java process that must run on each machine in a domain.
B. The SNMP Agent is used to kill non-responsive servers.
C. The SNMP Agent runs in the Administration Server.
D. The WebLogic console uses the SNMP Agent to configure managed servers.
E. C and D
Answer: C
20. For High Availability, how should NodeManager be configured in a WebLogic domain?
A. NodeManager should run as a daemon or service on all machines that host Managed Servers.
B. NodeManager should run as an application on all machines that host Managed Servers.
C. NodeManager should run as a daemon or service on a dedicated machine.
D. NodeManager should run as a daemon or service on the machine that hosts the Administration Server.
E. NodeManager should run as an application on the machine that hosts the Administration Server.
Answer: A
21. A Performance Pack can provide a significant improvement in WebLogic performance. What does a
Performance Pack do?
A. It enables processor hyper-threading.
B. It locks RAM to prevent paging.
C. It enables native I/O.
D. It uses prioritized Execution Queues.
E. It allows WebLogic to allocate RAM dynamically.
Answer: C
22. What are the supported installation modes for WebLogic Server?
A. Graphical mode, Console mode and Secure mode
B. Graphical mode, Console mode and Silent mode
C. Interactive mode, Console mode and Silent mode
D. Interactive mode, Console mode and Secure mode
E. Interactive mode, LAN mode and Secure mode
Answer: B
23. You are administering a WebLogic domain that consists of an Administration server and a cluster that
consists of two Managed Servers, named serverA and serverB, respectively. These servers are distributed
between two machines, machineA and machineB. The Administration server and serverA are on machineA
and serverB is on machineB. Local and remote clients are complaining about sluggish performance. Which
of the following methods can help you determine whether there is a processor bottleneck?
A. Use the operating-system specific task- and process-management tools.
B. In the WebLogic Administration Console, select CPU Monitoring.
C. Use weblogic.Admin and access the Processor MBean.
D. Monitor the SNMP trap processorMax .
E. B and D
Answer: A
24. What happens to a JMS message that is sent using distributed destinations?
A. The message is sent simultaneously to all physical destinations.
B. The message is sent to a primary destination and a backup destination.
C. The message is sent to one destination; if it is not acknowledged, it is resent to a different destination.
D. The message is broken up into packets, which are distributed, round-robin style, among the destinations.
E. The message is sent to one destination.
Answer: E
25. Consider a WebLogic Domain that consists of an Administration Server and four clustered Managed
Servers. Each server is running on its own hardware using JVM 1.4.1. The Managed Servers are running
on dedicated dual-CPU servers. Management is concerned that the Administration Server in your domain is
a single point of failure. How do you answer this concern?
A. Create a separate Administration cluster.
B. Enable Managed Server Independence mode.
C. Deploy the Administration application into the cluster.
D. Use NodeManager to enable Restart.
E. Turn on Administration Server Replication.
Answer: B
26. The default WebLogic Authentication provider mandates which feature(s)?
A. Minimum password length
B. Mandatory password expiration
C. Mandatory special characters in passwords
D. A and C
E. B and C
Answer: A
27. To use WebLogic.Admin in “batch” mode, which command-line switch is required?
A. atchScript ?atchScript
B. BATCHMODE atchFile BATCHMODE ?atchFile
C. BATCH
D. BATCHUPDATE atchFile BATCHUPDATE ?atchFile
E. BATCHUPDATE atchScript BATCHUPDATE ?atchScript
Answer: D
28. You are administering a WebLogic domain that consists of an Administration server and a cluster that
consists of two Managed Servers, named serverA and serverB, respectively. These servers are distributed
between two machines, machineA and machineB. The Administration server and serverA are on machineA
and serverB is on machineB. Local and remote clients are complaining about sluggish performance. Clients
seem to be unable to acquire connections to the servers. As you begin to research the problem, you find
that there are no error messages in the logs and the servers are not CPU-bound. Which of the following is
probably the problem?
A. The servers do not have enough RAM.
B. The servers need larger Execute Queues.
C. The servers’ AcceptBacklog parameter is set too low.
D. The system should be using a hardware SSL accelerator.
E. The connection to the database server is overwhelmed.
Answer: C
29. Consider a WebLogic Domain that consists of an Administration Server and four clustered Managed
Servers. Each server is running on its own hardware using JVM 1.4.1. The Managed Servers are running
on dedicated dual-CPU servers. You have read that Execute Queues can be used to tune the performance
of a WebLogic server. How could you use Execute Queues in this cluster?
A. To create separate threads for garbage collection
B. To tune the number of threads used for administrative traffic in a domain
C. To assign threads to specific JDBC connection pools
D. To load-balance execution among servers
E. To assign specific components to defined Execute Queues
Answer: E
30. Consider a JDBC multi-pool with three connection pools (Pool A, Pool B and Pool C). The distribution
algorithm is set to High Availability. You attempt to acquire a connection to Pool A. Under what
circumstances do you get a connection to Pool B or Pool C?
A. When the connection to Pool A fails a connection test
B. When all the connections in Pool A are in use
C. When Pool B or Pool C is next in the round-robin algorithm
D. You never get a connection from Pool B or Pool C
E. A and B
Answer: A
31. How are Java exceptions recorded in the log file?
A. As WARNING messages
B. By fully-qualified exception class name
C. Their numeric exception codes are printed
D. As CRITICAL messages
E. Java exceptions are not logged
Answer: B
32. Consider a WebLogic Domain with an (external) LDAP Authentication Provider and multiple
Authorization Providers. The Default WebLogic Auditing Provider is enabled. How can you add new users
to the system?
A. Through the WebLogic Administration Console
B. Through the LDAP server console
C. Directly, by editing the config.xml file
D. B and C
E. A and B
Answer: E
33. Setting the precompile parameter to true in the <jsp-descriptor> element of weblogic.xml
causes WebLogic to pre-compile JSPs. Which of the following are results of pre-compilation?
A. Changes to one JSP cause recompilation of all JSPs.
B. Server thread usage increases.


Download BEA 0B0-104 Dumps


November 22 2009

BEA 0B0-108 Dumps

System Administration Exam

  • Exam Number/Code : 0B0-108
  • Exam Name : System Administration Exam
  • Questions and Answers : 70 Q&As

Download Pass4sure 0B0-108 Dumps from the link below
Download CertifyMe 0B0-108 Dumps from the link below
Download Testking 0B0-108 Dumps from the link below


Download BEA 0B0-108 Dumps


November 22 2009

BEA 0B0-401 Dumps

BEA Certified Technical Sales Consultant: AquaLogic Platform

  • Exam Number/Code : 0B0-401
  • Exam Name : BEA Certified Technical Sales Consultant: AquaLogic Platform
  • Questions and Answers : 133 Q&As

Download Pass4sure 0B0-401 Dumps from the link below
Download CertifyMe 0B0-401 Dumps from the link below
Download Testking 0B0-401 Dumps from the link below


Download BEA 0B0-401 Dumps


November 22 2009

BEA 0B0-400 Dumps

BEA 8.1 Certified Tech Sales Consultant: WebLogic Platform

  • Exam Number/Code : 0B0-400
  • Exam Name : BEA 8.1 Certified Tech Sales Consultant: WebLogic Platform
  • Questions and Answers : 129 Q&As

Download Pass4sure 0B0-400 Dumps from the link below
Download CertifyMe 0B0-400 Dumps from the link below
Download Testking 0B0-400 Dumps from the link below


Download BEA 0B0-400 Dumps


November 22 2009

BEA 0B0-410 Dumps

BEA Certified Support Associate: WebLogic Server 9/10

  • Exam Number/Code : 0B0-410
  • Exam Name : BEA Certified Support Associate: WebLogic Server 9/10
  • Questions and Answers : 120 Q&As

Download Pass4sure 0B0-410 Dumps from the link below
Download CertifyMe 0B0-410 Dumps from the link below
Download Testking 0B0-410 Dumps from the link below


Download BEA 0B0-410 Dumps



PrepKing.com BEA 0B0-410 Sample Questions

1. When configuration changes are being made to a domain by an administrative user after acquiring a lock,
which of the following statement is true?
A. The lock expires in 30 minutes by default after which the changes are rolled back
B. The lock can be acquired by another other administrative user in which case the changes currently
pending will be rolled back
C. The lock can be acquired by another other user of the administrative category in which case the changes
currently not committed will be inherited by the user who acquired the lock
D. The lock cannot be acquired by others which an administrative user is holding the lock.
Answer: C
2. If there is problem with one of the transactions started by an EJB application, which one of the following
would be a starting point for troubleshooting this scenario?
A. Use a text editor to view the transaction log file for information about the failed transaction.
B. Use WebLogic Server log file for the respective server to gain more information about the failed
transaction.
C. Use Smart Update GUI to update the failed transaction and commit it.
D. Use the HTTP log file for the respective sever to gain more information about the failed transaction.
Answer: B
3. Poison message in JMS occurs when:
A. a JMS Message was sent to wrong queue with AUTO_ACKNOWLEDGE option set
B. a standalone receiver with client acknowledgment, does NOT call session.acknowledgement()
C. a javax.jms.JMSSecurityException was thrown while sending a message to a queue/topic
D. a MDB with option set to Auto-acknowledge receives a message
Answer: B
4. When diagnosing a native out of memory issue with one of the managed servers in a cluster, which of the
following recommendations will not be useful in collecting appropriate information?
A. Use ‘-verbosegc’ JVM arugment to collect heap usage information.
B. Record the process virtual memory size periodically using OS tools.
C. Check whether your application uses some JNI code or third party native modules.
D. All of the above
E. None of the above
Answer: D
5. Which two of the following statements are true about developing a Java web service? (Choose two)
A. Must have a private constructor
B. Must include at a minimum, a @WebService JWS annotation
C. May reference a service endpoint interface
D. All of the above
Answer: BC
6. Users are reporting that they cannot access an application on the server using virtual host names. To
debug this issue; the traffic received by each virtual host can be viewed by
A. Configuring and enabling Domain Log Filters
B. Configuring audit logs for logging HTTP requests
C. Enabling HTTP access log for each virtual host
D. Configuring and assigning network channels for each user
Answer: C
7. Smart Update is used for
A. updating an existing version of application with a new version in production
B. installing maintenance patches and service packs for WebLogic Server
C. updating the DTD based deployment descriptor(s) of a J2EE Application or Module to schema based
deployment descriptor(s)
D. updating the JDBC driver used by DataSources in a JDBC System Module automatically
Answer: B
8. When using WLDF to perform diagnostics tasks with WebLogic Server 9.x, which one of the following is
true?
A. WLDF configuration can only be done on the server-level
B. WLDF configuration can only be done on the application-level
C. WLDF configuration can be done both on the server-level and on the application-level
D. WLDF configuration can only be done on the domain-level
Answer: C
9. Which of the following version of Node Manager runs with a larger footprint when compared with the
others?
A. Java Version with SSL
B. Java Version without SSL (plain)
C. RSH Version
D. SSH Version
Answer: A
10. What is the order in which the upgrade should be run when upgrading to 9.x?
A. Security providers, node manager, managed server
B. Node manager, security providers, managed server
C. Managed server, security providers, node manager
D. Security providers, managed server, node manager
Answer: A
11. Scenario: Consider a production server deployment wherein the development team has no access to
the production servers. The Administrative team owns the responsibility of deployments, upgrades and
supporting the applications hosted on these servers. The decision was for a development and
administrative team to use off-line and online WLST scripts to deploy and support the application.
A. During debugging, if there is a need for the development team to review and recreate a similar server
configuration, which one of the following approaches would you adopt
B. Create a WLST off-line script using duplicateDomain and send it to the development team to recreate the
server configuration
C. Send all servers configuration files and have them recreate the server configuration using WLST parse
scripts
D. Create a WebLogic Server domain template using WLST and send it to the development team to
recreate the configuration
E. Use the WebLogic admin console to save the domain configuration and send it to the development team
Answer: C
12. You are not sure whether the configuration change you have just made in the WebLogic Server Console
requires the Managed Servers to be restarted. What should you do?
A. Look for details in the restart-servers.xml in the pending directory
B. View the Restart Checklist portlet in the console
C. It is not possible to tell, so you should restart them anyway
D. Examine the domain restart log for a list of the servers that need restarting
Answer: B
13. You have started the administration server for your domain and start to configure some additional
Managed Servers. When using the WebLogic Server Console to add or change domain configuration
attributes, such as adding new servers, the new settings are
A. Written immediately to config.xml
B. Saved as a list of changes in a pending file
C. Saved as a pending version of config.xml
D. Saved in the default (file) persistent store
Answer: C
14. What tool would be the best choice for deploying applications interactively when you do not know the
exact names of target servers?
A. weblogic.Deployer
B. Administration Console
C. WLST
D. Using wldeploy Ant task
Answer: B
15. Which of the following is the correct process to initiate a configuration change using the Administration
Console?
A. Obtain a lock on the current configuration, use JMX APIs to make changes to the configuration, and then
click the Save button
B. Update the edit.lok file; edit the config.xml file or the underlying subsystem xml files in the domain and
restart the server
C. Obtain a lock on the current configuration, make changes, and then click the Save button
D. Update the edit.lok file, use WLST to make changes, and then restart the server
Answer: C
16. When updating a domain configuration using WLST in order to add additional resources and you have
connected to the administration server using the administrative user weblogic. You are unaware that your
colleague also has some changes to make and is trying to log in to the WebLogic Server Console as the
user weblogic too. By default, what will happen when your colleague attempts to log in?
A. The login request is rejected because weblogic is already logged in
B. The colleague logs in, but must wait for you to release the configuration lock
C. The colleague logs in and discovers that he or she already has the lock, sharing it with you
D. The colleague logs in and is given the option to take the lock from you
Answer: C
17. WLST life cycle commands are used to manage the life cycle of a server instance and its services. If the
requirement is to use the Migrate command, which one of the following is INCORRECT?
A. The Migrate command can only be used to migrate a JMS server to another server within a cluster
B. For JTA migration, the source server has to be down for the Migrate command to succeed
C. For JMS Service, migration to another server can happen only on a running server
D. The migration type server option can be used to migrate all services for a particular server
Answer: C
18. During an upgrade process, which one of the following is NOT converted to 9.x by the upgrade wizard?
A. User scripts
B. User file store persisted data
C. User tlog
D. User in-flight transactions
Answer: A
19. What are the three different types of watches provided by the WebLogic 9.x Diagnostic Framework?
A. MBean, Harvester, Log
B. Harvester, Log, Instrumentation
C. Alarm, Notification, Log
D. Severity, Alarm, Harvester
Answer: B
20. Which of the following is NOT a state for a WebLogic Server instance?
A. RUNNING
B. STANDBY
C. PENDING
D. ADMIN
Answer: C
21. During a performance test on a 3 nodes WebLogic Cluster, one of the servers seems to be not
responding at times and the requests are timing out. And this is generating intermittent errors at the test
client. Getting an overview of each the server’s internal runtime state along with the subsystems during the
test can be accomplished by
A. Configuring Server State Dump Monitor
B. Creating Diagnostic Image
C. Setting SNMP MBean Attribute Change Monitor
D. Configuring Response Time Goal for the Default Work Manager.
Answer: B
22. In version 9.x and above WebLogic Server uses the following format to store domain configuration
A. A single text file named .properties
B. A single XML file named config.xml
C. A collection of text files named _.properties
D. A collection of XML files referenced from config.xml
Answer: D
23. The requirement is not to have any downtime for the application clients when redeploying a new version
of the application. Existing clients will be given certain amount of grace time beyond which the new version
should prevail. Which of the following approaches would you prefer if you are supposed to deploy the new
version of the application?
A. Use a command similar to weblogic.Deployer… “-redeploy…-name appname -appversion newappver”
and “-undeploy -appversion oldappver” later to undeploy
B. Use a command similar to weblogic.Deployer… “-redeploy…-name appname -appversion newappver
-retiretimeout ”
C. Use a command similar to weblogic.Deployer… “-redeploy…-name appname -appversion newappver”
and “-undeploy -graceful -appversion oldappver” later to undeploy.
D. Use the Ant task wldeploy to achieve this functionality since weblogic.Deployer does not support
side-by-side deployments.
Answer: B
24. Which of the following is false regarding auto-deployment?
A. If auto-deployment is enabled, when an application is copied into the /autodeploy directory of the
Administration Server, the Administration Server detects the presence of the new application and deploys it
automatically
B. If you delete application files from the /autodeploy directory when the admin server is not active,
managed servers will still detect that the application files were deleted and will undeploy the application
C. When you switch from the development mode to production mode, any applications that were previously
deployed via the /autodeploy directory remain deployed; if you wish to undeploy or redeploy such
applications after you have switched to production mode, you must undeploy or redeploy them manually
D. When an application has been auto-deployed in the exploded archive format, the Administration Server
periodically looks for a file named REDEPLOY in the exploded application directory. If the timestamp on this
file changes, the Administration Server redeploys the exploded directory
E. Production mode disables the auto-deployment feature and prevents any applications you place in the
/autodeploy directory after you switch to production mode from being deployed
Answer: B
25. An application needs to be upgraded while the existing clients would not incur any down time. To use
production redeployment strategy for achieving this, which two of the following are the deployment
restrictions? (Choose two)
A. Deployment targets cannot be changed
B. The security model cannot be changed
C. A new application must be loaded from the same directory as the old application
D. The version identifier must be specified in the application’s MANIFEST.MF file
Answer: AB
26. When using the production redeployment strategy, if the old version application is not retired due to few
long running client sessions that you do not want to preserve. You want that application to be undeployed,
which of the following weblogic.Deployer options would help? (Choose two)
A. Use of the -retiretimeout option while redeploying the updated application
B. Use of the -undeploy option with the name of retiring application
C. Use of the -appversion of retiring application along with -undeploy and name of the retiring application
D. Use of the -redeploy option to redeploy the retiring application
Answer: AC
27. If a part of the production application is changed and a partial redeployment strategy needs to be used
to update the existing application then which of the following partial redeployments do not adversely affect
the active client connections and are safe for all production environments that host the versioned enterprise
applications. (Choose three)
A. Partial redeployment of J2EE modules in an enterprise application


Download BEA 0B0-410 Dumps


November 22 2009

BEA 0B0-107 Dumps

BEA SOA Adoption and Implementation Exam

  • Exam Number/Code : 0B0-107
  • Exam Name : BEA SOA Adoption and Implementation Exam
  • Questions and Answers : 65 Q&As

Download Pass4sure 0B0-107 Dumps from the link below
Download CertifyMe 0B0-107 Dumps from the link below
Download Testking 0B0-107 Dumps from the link below


Download BEA 0B0-107 Dumps



PrepKing.com BEA 0B0-107 Sample Questions

1. Titan Communications is a provider of cable TV, wireless, and wireline phone services. Its stated
business objective is to transition from a product centric to a customer centric organization. What is the
primary benefit that an SOA would provide Titan?
A. Improved business/IT alignment.
B. Improved quality of customer service
C. Consistency in behavior across customer channels
D. Agility to change processes or introduce new products quickly
Answer: A
2. Felicity Financial Services is a full service brokerage. Their primary business objective is to be the
premier provider of tailored services to leading edge investors in areas of fixed income securities, vanilla
and exotic derivatives, and whole loan investments. What is the primary benefit that an SOA would
provide Felicity?
A. Improved business/IT alignment.
B. Improved quality of customer service
C. Consistency in information and behavior across channels
D. Agility to change processes or introduce new products quickly
Answer: D
3. Chasm, Inc., a clothing retailer, is executing on their SOA program. They have created a reference
architecture, roadmap, constructed common services such as single-sign on, have identified project
priorities. Some members of IT management are unaware of the SOA program, while other managers are
unclear as to why they are undertaking it. One of these managers is responsible for deploying a new
system in support of new promotions. Which of the SOA domains could most use improving (choose
two)?
A. Business Process & Strategy
B. Architecture
C. Costs & Benefits
D. Building Blocks
E. Projects & Applications
F. Organization & Governance
Answer: CF
4. Great North Travel is a multi-national travel agency implementing an SOA program. The program was
sponsored by the highest levels of both business and IT management, and is seen as a key tactic to their
customer satisfaction improvement and new product introduction strategies. A number of in-progress
initiatives are using various EAI technologies to perform integration, and there is no sharing of artifacts
among these initiatives. Furthermore, these initiatives all seem to be developing separate, and overlapping,
customer data stores. Which of the SOA domains could most use improving (choose two)?
A. Business Process & Strategy
B. Architecture
C. Costs & Benefits
D. Building Blocks
E. Projects & Applications
F. Organization & Governance
Answer: DF
5. Acme Builders, inc. has created an SOA roadmap, reference architecture and has exposed an initial
handful of data access and shared business services. The development team currently handles all
requests for support, diagnosis, and connectivity to these services through manual / ad hoc means. The
number of consumers of these services is growing. Which two service lifecycle phases are currently the
most appropriate to their SOA transformation program?
A. Monitor
B. Design
C. Expose
D. Build
E. Compose
F. Secure
Answer: AF
6. Serendipity Securities, Inc. has two major business objectives:
1. Ensure consistent customer information and service capabilities across all product lines and all
customer channels (interactive voice response, call centre, and website)
2. Maintain business unit autonomy so new products and/or services can be introduced in a timely
fashion.
What is the likelihood of achieving all the objectives through an SOA program?
A. Both objectives can be met; both agility and consistency are complementary.
B. It is unlikely the objectives can be met because agility and consistency are contradictory.
C. There is a tradeoff between agility and consistency in dealing with product information, and some
compromise must be made between the business units
D. There is a tradeoff between agility and consistency in dealing with customer information, and some
compromise must be made between the business units
Answer: D
7. Acme, Inc. is conducting an SOA transformation program. The program has been accepted by IT senior
management. The SOA steering committee has determined the appropriate priorities and complexities of
services, and how they should be harvested. The technical team has a good architectural understanding
of the design considerations and infrastructure needed to support the target services. Acme has not yet
constructed or harvested any services. What should Acme focus on next?
A. Focus on developing the initial shared services reference architecture
B. Services should be classified and categorized by their relative risk and business priority
C. A cost model should be constructed to evaluate best sequencing of services
D. Initial common services such as authentication, exception handling, and logging should be harvested
and/or constructed
Answer: D
8. FlyHigh Airlines is planning their SOA program. An initial assessment of capability has been made, but
no other planning has begun to date. What should FlyHigh focus on next?
A. Focus on developing the initial shared services reference architecture
B. Services should be classified and categorized by their relative risk and business priority
C. A cost model should be constructed to evaluate best sequencing of services and assess the required
infrastructure investment
D. Common services such as authentication, exception handling, and logging should be constructed
Answer: A
9. Johnston Marks, a regional bank, are looking to use SOA as a way to improve their product development
processes to support their growing business. Their primary problem is in dealing with the volume and
diversity of information required in developing a product. Currently, usage feedback, marketing research
information, and industry intelligence is gathered through a variety of legacy systems, spreadsheets,
desktop databases, letter mail, and FAX. Which two goals are most appropriate for leveraging SOA in this
process improvement exercise?
A. Reduce variance and ensure repeatability of the process
B. Eliminate some sources of information through services
C. Provide more consistent and managed interfaces to the various information sources
D. Enable the incorporation of newer and higher volume sources into the process
Answer: CD
10. Click the Exhibit button.
An automated business process requires human intervention only if an event occurs during its execution.
What is the term for this pattern? (See Exhibit for picture)
A. Fork/Join
B. Escalation
C. Delegation
D. Exception Handling
Answer: B
11. Langham Rudolph, a large industrial manufacturing firm, has a procurement department that serves the
purchasing needs for over 14 manufacturing sites. These sites were acquired over a period of time, and
operate with disparate legacy systems that serve a variety of requirements beyond just purchasing. It
takes an average of 20 minutes to log off one site and log on to another site, and each site maintains its
own set of purchasing rules and part numbering system. Thus, purchasers will typically process all
requirements for a single site before moving onto the next one this will often take up to a whole day.
This system unfortunately did not handle priorities well customer purchasing requirements could be held
up as much as 14 days if it was at the end of the list.
How should this problem be solved, balancing effectiveness and time to implement? Choose two of the
following:
A. The purchasing department should be sent a list of orders to expedite and dedicate one or more
resources to spend the extra time switching between systems and expediting.
B. Shared business services should be written to replace the legacy systems for all purchasing functions.
This will provide a unified part numbering format and purchasing rules.
C. A composite application should be written to pre-login and communicate across all legacy systems,
automatically translating between part numbers and rules, but re-using each legacy systems existing local
rule base.
D. A presentation service should be written to sort orders by priority and part type.
Answer: CD
12. Best Tech, inc. is a national retailer of consumer electronic goods. Their stores have been dealing with
supply problems. Best Techs central distribution department allocates goods to stores based on weekly
forecasts calculated by their inventory system. These forecasts are based on monthly batch files sent
from the stores that contain sales history. The marketing department sometimes runs flash promotions
which causes a run on a particular product. The forecasters usually account for this, but they dont account
for complementary products, or products that may be nearby in the store layout that become whim
purchases. As such, Best Tech stores are often out of stock on many popular items. Other times, Best
Tech stores and regional warehouses are flooded with inventory that they dont need.
While there are several solutions to this problem, what would be the optimal solution for BestTech to handle
sales of complementary products, considering SOA best practices?
A. Service enable the forecast feeds so they can be sent on a more frequent basis.
B. Service-enable point of sale and inventory: All sales from the point of sale system should invoke a
shared business service that logs the sale, so the forecasters have up-to-the-second planning information
C. Service-enable a pull supply chain: All sales from the point of sale system should invoke a shared
business service that immediately orders a new part from the warehouse. This in turn invokes a service at
the regional distributor, which then invokes a service at the supplier.
D. Service-enable the local store and regional warehouse inventory systems, so the planning department
can, in real time, request inventory status from several stores at once to gain a more accurate single view to
drive forecasts.
Answer: C
13. An order entry service is deployed on a .NET based cluster, callable through SOAP over HTTP, with an
expected response time of 1.5 seconds, and guaranteed exactly once message delivery using
WS-ReliableMessaging. A new version of this service is planned to be exposed with expected response
time of 500 ms and guaranteed at most once message delivery.
What logical part of the service is changing? Make no assumptions other than the information given.
(Choose one of A, B, or C)
A. Implementation
B. Interface
C. Contract
Answer: C
14. An order entry service is deployed on a .NET based cluster, callable through SOAP over HTTP, with an
expected response time of 1.5 seconds, and guaranteed exactly once message delivery using
WS-ReliableMessaging. A new version of this service is planned to be exposed with expected response
time of 500 ms and guaranteed at most once message delivery.
What physical part of the service is changing? Make no assumptions other than the information given.
A. The service URL
B. The service WSDL
C. The service transport
Answer: A
15. A services schema needs a field added. This will be an incompatible change to the service interface.
The service interface and implementation will be updated to handle and store this field. The new service
version will be deployed to a new URL endpoint. How should this change be handled?
A. All dependents should move to the new URL
B. All dependents can continue use the existing URL; maintain parallel implementations at the new and
existing URL.
C. An intermediary should be provided to adapt the interface from the existing URL to the new URL
D. An intermediary should be provided to adapt the interface from the new URL to the existing URL
Answer: C
16. An information and access service is created to standardize message-oriented access to a relational
database. Several batch file feeds go directly to the database and bypass the service interface. What is
the most appropriate long term action?
A. Batch feeds must be re-designed at their source systems to instead use messages
B. None. Direct batch feeds do not have any drawbacks in an SOA.
C. The batch files should be routed through the service interface as large messages.
D. The service interface should be designed to handle both message-oriented and streamed data access.
Answer: D
17. An information and access service is being harvested from an existing application. This service
returns relatively small data sets. It requires high-speed, low-latency access from services within its own
physical infrastructure, as well as moderate-latency access from physically remote services. How should
this be handled to ensure the service can be re-used and evolved autonomously?
A. Provide the same logical service interface for all transports or access paths, but allow different contracts
to be used between them.
B. Provide a separate logical service interface for each transport or access path.
C. Provide a separate service implementation for each transport or access path.
D. Provide the same logical service contract for all transports or access paths, but allow different
implementations to vary between them.
Answer: A
18. Which of the following are typical implementations of a shared business service? Choose two.
A. Business Process Orchestrations
B. Database Adapters
C. Enterprise Service Bus proxies
D. Packaged Application APIs
Answer: AC
19. Several shared business services are implemented by an application with a sophisticated and highly
intertwined code base. These business services need to use each other at times. What is the impact of
allowing this collaboration to occur within the implementation without forcing it to communicate through the
explicit service interface? Choose the correct answer with the broadest implication.
A. The implementation, when it evolves, will break the service interface.
B. Communicating through a service interface is inefficient; it is best to allow the collaboration to occur
within the implementation.
C. The shared business services would effectively be a managed as a single service, as they are tightly
coupled to a single implementation and must evolve together.
D. Collaborations cannot be managed or monitored through service infrastructure if they do not
communicate through the service interface.
Answer: C
20. Which of the following is NOT a means of distributing presentation service content across a network?
A. Asynchronous JavaScript and XML (AJAX)
B. Web Services for Remote Portlets (WSRP)
C. Java Standard Portlets (JSR-168)
D. Really Simple Syndication (RSS)
Answer: C


Download BEA 0B0-107 Dumps


November 22 2009

BEA 0B0-105 Dumps

BEA8.1 Certified Architect:Enterprise Architecture

  • Exam Number/Code : 0B0-105
  • Exam Name : BEA8.1 Certified Architect:Enterprise Architecture
  • Questions and Answers : 68 Q&As

Download Pass4sure 0B0-105 Dumps from the link below
Download CertifyMe 0B0-105 Dumps from the link below
Download Testking 0B0-105 Dumps from the link below


Download BEA 0B0-105 Dumps


November 22 2009

BEA 0B0-103 Dumps

BEA8.1 Certified Developer:Integration Solutions

  • Exam Number/Code : 0B0-103
  • Exam Name : BEA8.1 Certified Developer:Integration Solutions
  • Questions and Answers : 67 Q&As
  • Update Time: 2009-09-13
prepking

Tag Cloud

Adobe