Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Exam2pass > Oracle > Oracle Certifications > 1Z0-102 > 1Z0-102 Online Practice Questions and Answers

1Z0-102 Online Practice Questions and Answers

Questions 4

Which two statements are true about java EE shared libraries?

A. A shared library cannot be deployed to a cluster.

B. An application that is targeted to server1 can use a shared library that is targeted to server 2.

C. Multiple versions of the same shared library can be deployed and be active at the same time

D. A shared library is referenced through an application's deployment descriptor.

Buy Now

Correct Answer: CD

C: If more than one copy of myLibrary is registered, WebLogic Server selects the library with the highest specification version. If multiple copies of the library use the selected specification version, WebLogic Server selects the copy having the highest implementation version.

D: A Java EE application can reference a registered shared Java EE library using entries in the application's weblogic-application.xml deployment descriptor.

Reference: Referencing Shared Java EE Libraries in an Enterprise Application http://docs.oracle.com/cd/E12840_01/wls/docs103/programming/libraries.html

Questions 5

Each domain has a directory called servers that contains subdirectories for each server in the domain. Your domain has a managed server named managed1. When will the managed1 directory be created?

A. When the managed1 server is defined in the configuration Wizard

B. When the domain is created

C. When the administration server comes up for the first time

D. When the managed1 server1 comes for the first time

Buy Now

Correct Answer: D

This directory is created when the server is started for the first time.

Questions 6

Your server includes an application that uses a generic JDBC data source to connect to a database. However, the network connection between the server and the database is not 100% reliable.

You wish to avoid scenarios in which the application fails due to a failed JDBC connection. Identify two data source attributes to help accomplish this.

A. Statement Cache

B. Pool Reserve Mode

C. Test Table Name

D. Test Connection Mode

E. Test Connections on Reserve

Buy Now

Correct Answer: AE

A: Each connection in a data source has its own individual cache of prepared and callable statements used on the connection. However, you configure statement cache options per data source. That is, the statement cache for each connection in a data source uses the statement cache options specified for the data source, but each connection caches it's own statements.

E: When Test Connections On Reserve is enabled, when your application requests a connection from the data source, WebLogic Server tests the connection using the query specified in Test Table Name before giving the connection to the application.

Testing reserved connections can cause a delay in satisfying connection requests, but it makes sure that the connection is viable when the application gets the connection.

Reference: Oracle Fusion Middleware Oracle WebLogic Server Administration Console Online Help 11g Release 1, Configuring JDBC Data Sources http://docs.oracle.com/cd/E12839_01/web.1111/e13737/jdbc_datasources.htm#i1192665

Questions 7

Identify three types of JMS resources that can be configured as a part of a JMS module.

A. JMS Distributed Destination

B. JMS Connection Factory

C. JMS Data Source

D. JMS Destination

E. JMS Server

Buy Now

Correct Answer: ABD

Configurable JMS Resources in Modules

The following configuration resources are defined as part of a system module or an application module:

*

Distributed destinations (A, D)

*

Connection factories (B)

*

Queue and topic destinations

*

Templates

*

Quota

*

Foreign servers

*

MS store-and-forward (SAF) configuration items

All other JMS environment-related resources must be configured by the administrator as domain configuration resources. This includes:

*

JMS servers required (not E)

*

Store-and-Forward agents (optional)

*

Path service (optional)

*

Messaging bridges (optional)

*

Persistent stores (optional)

Reference: Configuring And Managing WebLogic JMS, Configurable JMS Resources in Modules

Questions 8

You run the following WLST script and it completes successfully. Which statement best describes what the script created?

A. A CMO named myserver with the listen address 192.168.1.102 and port 8008

B. A Managed Server named myserver with the listen address 192.168.1.102 and port 7001

C. A Managed Server named myserver with listen address 192.168.1.102 and port 8008

D. An Administration Server named myserver with the listen address 092.168.1.102 and port

Buy Now

Correct Answer: C

A managed server (not a CMO, not an administration server) is created.

Port is 8008.

Note: Listing: Creating a Managed Server

connect("username","password")

edit()

startEdit()

svr = cmo.createServer("managedServer")

svr.setListenPort(8001)

svr.setListenAddress("my-address")

save()

Reference: WebLogic Scripting Tool, Using WLST Online to Update an Existing Domain

Questions 9

You use a web browser to log in to a web application that is deployed to WebLogic Server. When you click link named "publish" on the site, an "Access Denied" message appears. Which two statements must be true about this server's security configuration?

A. The application is not associated with any security roles.

B. Multiple security realms are active at the same time.

C. Your user account is a member of a group.

D. Your user account exists in an authentication provider.

E. A security policy is attached to the "publish" link URL.

Buy Now

Correct Answer: DE

D: You were able to log in to the web application that is deployed through WebLogic. In WebLogic Server, Authentication providers are used to prove the identity

of users or system processes.

This implies that your account exists in an authentication provider.

E: Extra security is needed to use the publish link. This could be explained by a security policy attached the publish Link URL.

Reference: Developing Security Providers for WebLogic Server, Authentication Providers

Questions 10

View the Exhibit.

You previously deployed an application but later decide to change various configuration parameters, such as timeouts. You access the application's Configuration

tab in the console and make your configurations, as shown in the Exhibit.

In which file does WebLogic record these modifications?

A. config.xml

B. weblogic.xml

C. Application.xml

D. Plan.xml

Buy Now

Correct Answer: D

The following attributes are displayed in the exhibit:

Session Invalidation Interval (in seconds)

Session Timeout (in seconds)

debug-enabled

Maximum in-memory Sessions

These attributes are stored in the weblogic.xml file as the following elements:

invalidation-interval-sec

timeout-secs

debug-enabled

max-in-memory-sessions

Incorrect answers:

A: config.xml does not contain session related information.

The config.xml file consists of a series of XML elements. The Domain element is the top-level element, and all elements in the Domain are children of the Domain

element. The Domain element includes child elements, such as the Server, Cluster, and Application elements. These child elements may have children

themselves.

For example, the Server element includes the child elements WebServer, SSL and Log. The Application element includes the child elements EJBComponent and WebAppComponent. Each element has one or more configurable attributes. An attribute has a corresponding attribute in the configuration API. For example, the Server element has a ListenPort attribute, and likewise, the weblogic.management.configuration.ServerMBean class has a ListenPort attribute.

Reference: weblogic.xml Deployment Descriptor Elements

Questions 11

Which two statements are true about Log Filters?

A. Log Filters are created at the domain level.

B. You do not have to lock the configuration to create Log Filters.

C. You can apply a Log Filter to the server log, but not to standard out.

D. The administration console assists in the creation of Log Filter expressions

Buy Now

Correct Answer: AD

A (not B): For any given WebLogic Server instance, you can override the default filter and create a log filter that causes a different set of messages to be written to

the domain log file.

Note:

To create and configure a log filter:

1.

If you have not already done so, in the Change Center of the Administration Console, click Lock and Edit (not B) (see Use the Change Center).

2.

In the left pane of the Console, select the name of the active domain in the Domain Structure panel.

3.

On the Configuration: Log Filters page, click New.

4.

On the Create a New Log Filter page, enter a value to identify the filter in the Name field.

5.

Click Finish.

The new log filter appears in the Log Filters table.

6.

To configure a filter expression, in the Log Filters table, click the log filter name.

7.

On the Configuration page, in the Filter Expression text box, enter criteria for qualifying messages.

A filter expression defines simple filtering rules to limit the volume of log messages written to a particular log destination.

See D) below.

8.

Click Save.

The filter and filter expression are listed in the Log Filters table.

D: Log Filter Configuration

Use this page to define a custom log filter to restrict the set of messages that one or more servers send to a message destination, such as the domain log,

standard out, server log file, or memory buffer of recent log events.

You can click Edit to type or paste in an expression directly, using WLDF Query Language syntax (see Related Topics, below); or you can click Add Expression to

construct an expression by choosing items from lists.

Once you create a filter, you cannot change its name. Instead, you must create a new filter under a different name.

Reference: Administration Console Online Help, Log Filter Configuration Reference: Administration Console Online Help, Create log filters

Questions 12

The master Embedded LDAP has the capability to back up its data. Which statement is true?

A. The Managed Servers should be shut down when backups are being performed on the Embedded LDAP.

B. The backup feature is enabled by default.

C. The backup feature of the Embedded LDAP should be enabled for all the servers in the domain on a per-basis.

D. The backup is stored in a comma-separated variable format.

Buy Now

Correct Answer: C

The backup of the embedded LDAP server is enabled for a domain at a time. See step 2) in Note below.

Incorrect answers:

A: No need to shut down the server. See Note below.

B: The backup feature need to be configured. See Note below.

D: The format of the backup file is not comma-seperated.

Note: To configure the backups of the embedded LDAP server:

1.

If you have not already done so, in the Change Center of the Administration Console, click Lock and Edit

2.

Select the Domain you want to configure (for example, mydomain).

3.

Expand Security > Embedded LDAP.

4.

Set the Backup Hour, Backup Minute, and Backup Copies attributes on the Embedded LDAP Server page.

5.

Click Save to save your changes.

6.

To activate these changes, in the Change Center of the Administration Console, click Activate Changes.

Questions 13

You are installing Oracle WebLogic Server 11g for some new developers in the department. They have asked for a very generic installation for development and want you to ensure that the "MedRec" sample domain is included. What should you do to accomplish this?

A. Select the typical installation because the "MedRec" sample domain is included in it.

B. You won't be able to do this, because all the samples were removed from the installer after 10g.

C. Select the custom installation and select Server Examples.

D. After installation, create a sample domain named "MedRec" by using the Configuration Wizard.

Buy Now

Correct Answer: C

MedRec-Spring is not installed by default when you install WebLogic Server. You must choose Custom installation, then select Server Examples from the Choose Products and Component page.

Note: MedRec is an end-to-end sample Java EE application shipped with WebLogic Server that simulates an independent, centralized medical record management system. The MedRec application provides a framework for patients, doctors, and administrators to manage patient data using a variety of different clients.

MedRec demonstrates WebLogic Server and Java EE features, and highlights Oracle- recommended best practices. MedRec is included in the WebLogic Server distribution, and can be accessed from the Start menu on Windows machines. For Linux and other platforms, you can start MedRec from the WL_HOME\samples \domains\medrec directory, where WL_HOME is the top-level installation directory for WebLogic Server. A Spring version of the application is accessible from the WL_HOME\samples\domains\medrec-spring directory.

Reference: Oracle Fusion Middleware Spring Support in Oracle WebLogic Server 11g Developing Spring-Based Applications for Oracle WebLogic Server

Exam Code: 1Z0-102
Exam Name: Oracle WebLogic Server 11g: System Administration
Last Update: May 23, 2026
Questions: 111

PDF (Q&A)

$45.99
ADD TO CART

VCE

$49.99
ADD TO CART

PDF + VCE

$59.99
ADD TO CART

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2026 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.