Oracle 1z0-134 Exam Practice Questions (P. 3)
- 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 #11
Examine the domain diagram:

What is the correct path within the configuration hierarchy to the MBean that contains the log rotation parameters for server04? (Choose the best answer.)

What is the correct path within the configuration hierarchy to the MBean that contains the log rotation parameters for server04? (Choose the best answer.)
- A/Servers/server04/Log/server04Most Voted
- B/server04/log/rotation
- C/Cluster01/server04/log
- D/Machine02/server04/log
- E/Logs/server04
- F/TestDomain/server04/log
- G/server04/log
Correct Answer:
D
By default, the rotated files are stored in the same directory where the log file is stored.
The server log file is located on the computer that hosts the server instance. By default, the server log file is located below the server instance's root directory: root-directory\server-name\server-name.log. https://docs.oracle.com/cd/E28280_01/web.1111/e13739/config_logs.htm#WLLOG139
D
By default, the rotated files are stored in the same directory where the log file is stored.
The server log file is located on the computer that hosts the server instance. By default, the server log file is located below the server instance's root directory: root-directory\server-name\server-name.log. https://docs.oracle.com/cd/E28280_01/web.1111/e13739/config_logs.htm#WLLOG139
send
light_mode
delete
Question #12
Which two automatic migration scenarios require node manager for all migratable services? (Choose two.)
- AConsensus leasingMost Voted
- BDatabase leasing with no pre and post migration scripts
- CDatabase leasing with pre and post migration scriptsMost Voted
- DSynchronous leasing
Correct Answer:
AC
When using automatic service migration, the Node Manager is required to get health monitoring information about the member servers involved, as follows:
* Consensus leasing Node Manager must be running on every machine hosting managed servers within the cluster.
* Database leasing Node Manager must be running on every machine hosting managed servers within the cluster only if pre/post-migration scripts are defined. If pre/post-migrations are not defined, then Node manager is not required.
Reference:
https://docs.oracle.com/cd/E13222_01/wls/docs103/cluster/service_migration.html
AC
When using automatic service migration, the Node Manager is required to get health monitoring information about the member servers involved, as follows:
* Consensus leasing Node Manager must be running on every machine hosting managed servers within the cluster.
* Database leasing Node Manager must be running on every machine hosting managed servers within the cluster only if pre/post-migration scripts are defined. If pre/post-migrations are not defined, then Node manager is not required.
Reference:
https://docs.oracle.com/cd/E13222_01/wls/docs103/cluster/service_migration.html
send
light_mode
delete
Question #13
Which two statements are true about the role of cluster master in whole server migration? (Choose two.)
- AThere is exactly one cluster master in the cluster at a given point of time.
- BThe cluster master must host all the pinned services in the cluster.
- CAny managed server in the cluster can serve as the cluster master.
- DA cluster master must always be different from a singleton master.
- EThe cluster master must always be started with the node manager.
Correct Answer:
AC
One server instance in a cluster that contains migratable servers acts as the cluster master and orchestrates the process of automatic server migration, in the event of failure.
Any Managed Server in a cluster can serve as the cluster master, whether it hosts pinned services or not.
Note: Any server instance in the cluster can serve as the cluster master. When you start a cluster that contains migratable servers, the first server to join the cluster becomes the cluster master and starts up the cluster manager service. If a cluster does not include at least one migratable server, it does not require a cluster master, and the cluster master service does not start up.
Reference:
https://docs.oracle.com/cd/E12839_01/web.1111/e13709/migration.htm#CLUST285
AC
One server instance in a cluster that contains migratable servers acts as the cluster master and orchestrates the process of automatic server migration, in the event of failure.
Any Managed Server in a cluster can serve as the cluster master, whether it hosts pinned services or not.
Note: Any server instance in the cluster can serve as the cluster master. When you start a cluster that contains migratable servers, the first server to join the cluster becomes the cluster master and starts up the cluster manager service. If a cluster does not include at least one migratable server, it does not require a cluster master, and the cluster master service does not start up.
Reference:
https://docs.oracle.com/cd/E12839_01/web.1111/e13709/migration.htm#CLUST285
send
light_mode
delete
Question #14
You are trying to set up a JMS Session with a specified acknowledgment mode. You want the application that receives the message to explicitly take care of the acknowledgment.
Which option represents a valid choice for the acknowledgment mechanism that you can use? (Choose the best answer.)
Which option represents a valid choice for the acknowledgment mechanism that you can use? (Choose the best answer.)
- AAUTO_ACKNOWLEDGEMost Voted
- BCLIENT_ACKNOWLEDGE
- CDUPS_OK_ACKNOWLEDGE
- DDEFAULT_ACKNOWLEDGE
Correct Answer:
B
With CLIENT_ACKNOWLEDGE the Session object relies on the application to call an acknowledge method on a received message. Once the method is called, the session acknowledges all messages received since the last acknowledge.
Incorrect Answers:
A: With CLIENT_ACKNOWLEDGE the Session object acknowledges receipt of a message once the receiving application method has returned from processing it.
C: With DUPS_OK_ACKNOWLEDGE the Session object acknowledges receipt of a message once the receiving application method has returned from processing it; duplicate acknowledges are permitted.
D: There is no acknowledge mode named DEFAULT_ACKNOWLEDGE.
Reference:
http://docs.oracle.com/cd/E12840_01/wls/docs103/jms/fund.html
B
With CLIENT_ACKNOWLEDGE the Session object relies on the application to call an acknowledge method on a received message. Once the method is called, the session acknowledges all messages received since the last acknowledge.
Incorrect Answers:
A: With CLIENT_ACKNOWLEDGE the Session object acknowledges receipt of a message once the receiving application method has returned from processing it.
C: With DUPS_OK_ACKNOWLEDGE the Session object acknowledges receipt of a message once the receiving application method has returned from processing it; duplicate acknowledges are permitted.
D: There is no acknowledge mode named DEFAULT_ACKNOWLEDGE.
Reference:
http://docs.oracle.com/cd/E12840_01/wls/docs103/jms/fund.html
send
light_mode
delete
Question #15
You created a script to monitor your WebLogic Server WLS Execute Thread:

Here is a message in your ExecuteThread.log file:

What is the value of xxxx if the thread has been running a request for twenty minutes, assuming a default configuration?

Here is a message in your ExecuteThread.log file:

What is the value of xxxx if the thread has been running a request for twenty minutes, assuming a default configuration?
- ASRANDBY
- BACTIVE
- CSTUCK
- DRUNNING
- EWAITING
- FADMIN
- GFAILED
Correct Answer:
C
This thread is considered Stuck by WebLogic because it's been running for over the time defined in MaxStuckThreadTime (600 seconds by default). Weblogic
Server waits for this time to be reached before marking a thread as stuck if the thread is still working after this time.
Example: [STUCK] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)' id=73 idx=0x128 nid=13410 prio=1 alive, in native, daemon
Reference:
https://blogs.oracle.com/WebLogicServer/entry/analyzing_a_stuck_weblogic_execute
C
This thread is considered Stuck by WebLogic because it's been running for over the time defined in MaxStuckThreadTime (600 seconds by default). Weblogic
Server waits for this time to be reached before marking a thread as stuck if the thread is still working after this time.
Example: [STUCK] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)' id=73 idx=0x128 nid=13410 prio=1 alive, in native, daemon
Reference:
https://blogs.oracle.com/WebLogicServer/entry/analyzing_a_stuck_weblogic_execute
send
light_mode
delete
All Pages