Oracle 1z0-134 Exam Practice Questions (P. 4)
- Full Access (125 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #16
A current production WebLogic Server (WLS) domain needs to be upgraded without affecting the users. What are the five steps to follow for a Rolling Update?
(Choose five.)
(Choose five.)
- ABack up the contents of your domain.
- BUse pack and unpack to upgrade each of the servers in the machine.
- CShut down the servers in a single machine.
- DRepeat the process for all machines in the domain.
- ERestart the servers in the machine.
- FRepeat the process for all domains in the machine.
- GUpgrade the servers in the machine.
Correct Answer:
ACDEG
A: Before you begin the upgrade process, make sure that you take any necessary precautions such as:
* Back up your applications, database schema, other application data, and domains.
* If required, obtain latest third party plug-ins or components that are compatible with required non-Oracle components. For example, Apache Web Server libraries.
CGED: The rolling upgrade process includes stopping the Administration Server, installing the upgrade, restarting the Administration Server, and then doing the same for each Managed Server in the cluster (machine).
Reference:
http://docs.oracle.com/cd/E14571_01/web.1111/e13754/rolling_upgrade.htm#WLUPG268
ACDEG
A: Before you begin the upgrade process, make sure that you take any necessary precautions such as:
* Back up your applications, database schema, other application data, and domains.
* If required, obtain latest third party plug-ins or components that are compatible with required non-Oracle components. For example, Apache Web Server libraries.
CGED: The rolling upgrade process includes stopping the Administration Server, installing the upgrade, restarting the Administration Server, and then doing the same for each Managed Server in the cluster (machine).
Reference:
http://docs.oracle.com/cd/E14571_01/web.1111/e13754/rolling_upgrade.htm#WLUPG268
send
light_mode
delete
Question #17
You have a multithreaded application that looks up the WebLoqic JMS ConnectionFactory object from the JNDI tree.
Which statement is correct in this scenario? (Choose the best answer.)
Which statement is correct in this scenario? (Choose the best answer.)
- AIt is not permitted. A multithreaded application cannot access the ConnectionFactory object.
- BThe access to ConnectionFactory object MUST be synchronized.
- CThe ConnectionFactory object can be referenced in a multithreaded application without any special considerations.Most Voted
- DMultiple threads trying to use the ConnectionFactory object simultaneously will throw an exception.
- EIn a multithreaded scenario, connection objects cannot be safely created from the ConnectionFactory.
Correct Answer:
B
A connection factory supports concurrent use, enabling multiple threads to access the object simultaneously.
A session and its message producers and consumers can only be accessed by one thread at a time (i.e. the access must be synchronized). Their behavior is undefined if multiple threads access them simultaneously.
Incorrect Answers:
A, E: A connection factory supports concurrent use, enabling multiple threads to access the object simultaneously.
C, D: A session and its message producers and consumers can only be accessed by one thread at a time. Their behavior is undefined if multiple threads access them simultaneously.
Reference:
http://docs.oracle.com/cd/E12840_01/wls/docs103/jms/fund.html
B
A connection factory supports concurrent use, enabling multiple threads to access the object simultaneously.
A session and its message producers and consumers can only be accessed by one thread at a time (i.e. the access must be synchronized). Their behavior is undefined if multiple threads access them simultaneously.
Incorrect Answers:
A, E: A connection factory supports concurrent use, enabling multiple threads to access the object simultaneously.
C, D: A session and its message producers and consumers can only be accessed by one thread at a time. Their behavior is undefined if multiple threads access them simultaneously.
Reference:
http://docs.oracle.com/cd/E12840_01/wls/docs103/jms/fund.html
send
light_mode
delete
Question #18
You are planning to use WebLogic JMS for implementing my enterprise messaging architecture. Which messaging paradigm is invalid in this context? (Choose the best answer.)
- APoint to Point messaging
- BPublish Subscribe messaging
- CDatagram messagingMost Voted
- DPersistent messaging
Correct Answer:
C
Incorrect Answers:
A, B: JMS supports two messaging models: point-to-point (PTP) and publish/subscribe (pub/sub).
D: As per the "Message Delivery Mode" section of the JMS Specification, messages can be specified as persistent or non-persistent.
Reference:
http://docs.oracle.com/cd/E12840_01/wls/docs103/jms/fund.html
C
Incorrect Answers:
A, B: JMS supports two messaging models: point-to-point (PTP) and publish/subscribe (pub/sub).
D: As per the "Message Delivery Mode" section of the JMS Specification, messages can be specified as persistent or non-persistent.
Reference:
http://docs.oracle.com/cd/E12840_01/wls/docs103/jms/fund.html
send
light_mode
delete
Question #19
What are two differences between a group and a role? (Choose two.)
- AGroups are static and roles are dynamic and conditional.
- BRoles can be scoped to applications and groups are only global.
- CRoles are static and groups are dynamic and conditional.
- DGroups can be scoped to applications and roles are only global.
- EGroups can contain roles but roles cannot contain groups.
Correct Answer:
AB
A security role is a privilege granted to users or groups based on specific conditions. Like groups, security roles allow you to restrict access to WebLogic resources for several users at once. Security roles differ from groups as follows:
* Security roles are computed and granted to users or groups dynamically, based on conditions such as user name, group membership, or the time of day. Groups are static.
* Security roles can be scoped to specific WebLogic resources within a single application in a WebLogic Server domain (unlike groups, which are always scoped to an entire WebLogic Server domain).
Reference:
https://docs.oracle.com/cd/E13222_01/wls/docs81/secwlres/secroles.html
AB
A security role is a privilege granted to users or groups based on specific conditions. Like groups, security roles allow you to restrict access to WebLogic resources for several users at once. Security roles differ from groups as follows:
* Security roles are computed and granted to users or groups dynamically, based on conditions such as user name, group membership, or the time of day. Groups are static.
* Security roles can be scoped to specific WebLogic resources within a single application in a WebLogic Server domain (unlike groups, which are always scoped to an entire WebLogic Server domain).
Reference:
https://docs.oracle.com/cd/E13222_01/wls/docs81/secwlres/secroles.html
send
light_mode
delete
Question #20
A Web Module needs specific tuning. The Development team fine tunes the module in the deployment descriptor (weblogic.xml) as follows:

Which two are true? (Choose two.)

Which two are true? (Choose two.)
- AMyWorkManager is an application-scoped Work Manager.
- BAdd the line <wl-dispatch-policy>MyWorkManager</wl-dispatch-policy> before <work-manager> tags in weblogic.xml to make the Web Module use the Work Manager MyWorkManager.
- CMyWorkManager is a Global Work Manager.
- DMyWorkManager is a Default Work Manager.
- EOnce the application is deployed and started on a Managed WebLogic Server, MyWorkManager will appear under Environment/Work Managers on the WebLogic Console.
Correct Answer:
AB
A: You can create Work Managers that are available only to a specific application or module. You can define application-scoped Work Managers in the WebLogic
Server Administration Console and in the following descriptors: weblogic-application.xml weblogic-ejb-jar.xml weblogic.xml
B: A method is assigned to a Work Manager, using the <dispatch-policy> element in the deployment descriptor.
Incorrect Answers:
E: Environment/Work Managers displays the Global work managers.
Reference:
https://docs.oracle.com/cd/E24329_01/web.1211/e24432/self_tuned.htm#CNFGD129
AB
A: You can create Work Managers that are available only to a specific application or module. You can define application-scoped Work Managers in the WebLogic
Server Administration Console and in the following descriptors: weblogic-application.xml weblogic-ejb-jar.xml weblogic.xml
B: A method is assigned to a Work Manager, using the <dispatch-policy> element in the deployment descriptor.
Incorrect Answers:
E: Environment/Work Managers displays the Global work managers.
Reference:
https://docs.oracle.com/cd/E24329_01/web.1211/e24432/self_tuned.htm#CNFGD129
send
light_mode
delete
All Pages