Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmaspas7

Easiest Solution 2 Pass Your Certification Exams

1z0-900 Oracle Java EE 7 Application Developer Free Practice Exam Questions (2025 Updated)

Prepare effectively for your Oracle 1z0-900 Java EE 7 Application Developer certification with our extensive collection of free, high-quality practice questions. Each question is designed to mirror the actual exam format and objectives, complete with comprehensive answers and detailed explanations. Our materials are regularly updated for 2025, ensuring you have the most current resources to build confidence and succeed on your first attempt.

Page: 1 / 3
Total 142 questions

Your organization is planning for a periodic counting of individual items automatically throughout the course of the year. As part of this activity, the user has loaded items to the cycle count but some of the items are not being considered when count schedules and count sequences are not generated.

Identify two reasons that explain why the items are not being considered.

A.

The ABC assignment group is not defined.

B.

The Include in Schedule option is not selected to include the item for auto-scheduling.

C.

The Cycle Count Enabled flag is not selected for the inventory organization.

D.

The Cycle Count Enabled flag is not selected for the item.

E.

The approval controls are not set up.

Your class requires multiple resources defined, as shown in the following:

Which annotation do you use to group multiple @Resource declarations together for class-based injection, replacing in the code above?

A.

@Resources

B.

@Resource

C.

@ResourceGroup

D.

@ResourceCollection

You need to load on-hand balances for go live. Which template should be used for this?

A.

InventoryBalanceImportTemplate.xlsm

B.

InventoryReservationImportTemplate.xlsm

C.

InventoryTransactionImportTemplate.xlsm

D.

InventoryOnHandBalanceTemplate.xlsm

E.

InventoryMiscellaneousTrxTemplate.xlsm

When handling a JSF request, your application code decided to redirect the call to another URL by using HTTP redirect. Which action should you take to correctly complete the handling of the JSF life cycle?

A.

Set the immediate=“true” attribute on the command button that was used to perform this call.

B.

Invoke the dispatch() method on the ExternalContext object.

C.

Invoke the setCurrentPhaseId(RENDER_RESPONSE) method on the FacesContext object.

D.

Invoke the responseComplete() method on the FacesContext object.

Your customer is a very large organization spanning across multiple countries. Their legal requirements, Human Resource Policies, and Functional Currencies for Ledger are different for each country. Your customer wants to maintain 10 different companies in the system.

Which combination meets this requirement?

A.

1 Enterprise, 10 Divisions, where each division has its own ledger with common legal entity across all divisions

B.

10 Enterprises, 10 Divisions, where each division has its own legal entity and ledger

C.

1 Enterprise, 10 Divisions, where each division has its own legal entity and ledger

D.

10 Enterprises, 1 Division, where each division has 10 legal entities and 1 ledger

: 15

Given:

What code needs to be added to line 1 for MyMapper bean instances to be correctly passivated?

A.

@Stateless @PassivationCapable

B.

@Stateless

C.

@Stateful @PassivationCapable

D.

@Stateful

Your customer has a complex financial reporting structure.

Which three elements should you define first in order to form a basis for this reporting?

A.

Tax, Legal, and Industry

B.

Managerial, Operational, and Industry

C.

Legal, Managerial, and Functional

D.

Legal, Autonomy, and Operational

You need to exchange large binary messages using chunks in a WebSocket application. Identify two ways in which you can receive partial messages. (Choose two.)

A.

Define an @OnMessage method with a single MimePart parameter.

B.

Use a ChunkListener interface implementation.

C.

Use a MessageHandler.Partial interface implementation.

D.

Define an @OnMessage method with byte [] as the first parameter and a boolean as the second parameter.

While negotiating the terms of the consignment agreement, the buyer and the supplier mutually agree to set aging onset point as receipt and the aging period as five days. The terms also say that the consumption advice will be generated daily.

In which three scenarios will the goods be transferred from the supplier’s ownership to buyer’s ownership?

A.

You received the goods today and you decided to issue the goods after days without transferring the ownership.

B.

You received the goods today and for the next one week you do not plan any action on the same.

C.

You received the goods today after six days you decide to transfer the ownership using the “create transfer to consigned transaction” task.

D.

You received the goods today and you transfer the ownership using the “create transfer to owned transaction” task.

E.

You received the goods and after four days you return the material to the supplier.

F.

You received the goods today and after three days you transfer the ownership using the “create transfer to consigned transaction” task.

Which action invokes supply chain orchestration and transfer of data to supply chain orchestration Interface tables?

A.

creating Purchase Order Receipt

B.

running a scheduled process called “Create Transactions”

C.

running Min-Max Planning

D.

creating a new Inventory Organization for execution of supply chain orchestration

You defined an Inventory Organization that is meant to track the contract manufacturing process outsourced to a supplier.

Where do you mention that this Inventory Organization is meant for one particular supplier?

A.

Manage Inventory Organization Locations

B.

Manage Subinventories

C.

Manage Inventory Organizations

D.

Manage Contract Manufacturing Relationships

E.

Manage Item Organizations

Given the code fragment:

What output will be returned when this servlet is called a GET request?

A.

Service() method called.

B.

Service() method called.Get() method called.

C.

An HTTP error

D.

GET() method called.

Your customer has two warehouses (Inventory organizations) located in two different regions. They have a consigned agreement in place with the supplier. Your customer requests that whenever consumption advice is created, it should be created separately for each inventory organization.

What setup is required to achieve this requirement?

A.

Set Consumption Advice Summary in Consignment Agreement to “Organization’.

B.

Set Consumption Advice Summary in Consignment Agreement to “All Organizations with items”.

C.

This cannot be achieved because only one common consumption advice is created regardless of other parameters.

D.

Set Consumption Advice Summary in Consignment Agreement to “All Organizations”.

Which type allows you to share servlet attributes across your entire web application?

A.

ServletContext

B.

HttpSession

C.

ServletRequest

D.

ServletConfig

Given the code fragment:

How long does this cookie persist?

A.

until server shutdown

B.

until garbage collection in the servlet instance

C.

this request

D.

until browser shutdown

You have been assigned to the Widget Editor portion of an application. It contains a Widget Editor Facelet page, the Widget class, and a simple WidgetEditor backing bean, which contains a reference to the current Widget instance.

Given the code fragment from the Widget class:

Given the code fragment from the Facelet page:

The page displays Conversion Error when a user fills out all the form fields and clicks the Save button.

Which step do you perform to fix this problem?

A.

Replace Line 1 with:

B.

Enclose the code fragment within the tag

C.

Insert at Line 1

D.

Replace Line 1 with:

Given the code fragment:

Which method should be used on line 3 to enable default validation mechanism?

A.

u.setProperty(String, Object)

B.

u.setProperty(Schema)

C.

u.setEventHandler(ValidationEventHandler)

D.

u.setAdapter(XmlAdapter)

How can a servlet indicate to the browser that cookie data should be sent over a secure connection?

A.

Call the getSecure(true) method on the cookie object.

B.

Encrypt the cookie data. The browser automatically sends encrypted data over a secure connection.

C.

Set the ENCRYPT header in the response.

D.

Configure SessionTrackingMode.SSL on the ServletContext object.

Which three values are applicable for the profile option - “Transaction Processing Mode” for subinventory transfer and interorganization transfer?

A.

Background Processing

B.

Sequential Processing

C.

Concurrent Processing

D.

Online Processing

E.

Offline Processing

F.

Blind Processing

Material is transferred between the Subinventories within an organization via transfer order. The setup is complete and the transfer order is created though the FBDI process.

What is the primary interface data that needs to be completed in the template?

A.

CST_I_INCOMING_TXN_COSTS

B.

INV_SUBINVENTORY_TRANSFER

C.

INV_TRANSACTION_LOTS_INTERFACE

D.

INV_SERIAL_NUMBERS_INTERFACE

E.

INV_TRANSACTIONS_INTERFACE

Page: 1 / 3
Total 142 questions
Copyright © 2014-2025 Solution2Pass. All Rights Reserved