Java EE's support for WS-Security includes handling which two types of security credentials? (Choose two.)
A. X.509 certificates
B. SAML tokens
C. OAuth Bearer tokens
D. Two-factor authentication tokens
Given:

You are creating an Alarm management system. When you create a new alarm, you want it to create an alert that is triggered once at the specified time.
Which method should you call on Line 9 to create the timer?
A. timerService.createCalendarTimer(alarmDate, config);
B. timerService.createSingleActionTimer(alarmDate, config);
C. timerService.createIntervalTimer(alarmDate, -l, config);
D. timerService.createTimer(alarmDate, -l, config);
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
Which statement is true about Java methods that are exposed as Web Service operations by using JAXWS API?
A. The @WebResult annotation must exist.
B. Method parameters and return types must be JAXB compatible.
C. Method parameters must be declared by using @WebParam.
D. The @WebMethod annotation must exist.
Given the JPQL code fragment:
Select pub.title, pub.author, pub.pages FROM Publisher pub
Which two clauses do you add to this JPQL query to retrieve only those books with between 500 and 750 total pages? (Choose two.)
A. WHERE MIN(pages) >= 500 AND MAX(pages) <= 750
B. WHERE pub.pages <= 500 OR pub.pages >= 750
C. WHERE pub.pages BETWEEN 500 AND 750
D. WHERE pub.pages <= 500 AND pub.pages >=750
Which three applications originate a buy request that is received by supply chain orchestration?
A. Purchasing
B. Inventory
C. Order Management
D. Planning
E. Self Service Procurement
F. Accounts Payable
Your organization performs a restock via a transfer order between inventory organizations, using the following parameters for processing:
Transfer Type: In-transit transfer type Receipt Routing: Standard Transfer Order Required: Yes
During the process, the receiving organization wants to make a change to the transfer order line.
After which fulfillment stage will they no longer be able to change the transfer order?
A. Awaiting Receiving
B. Awaiting Billing
C. Closed
D. Ship Confirm
E. Awaiting Fulfillment
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
On the Supply Lines Overview page, the deviations in supply type chart show a supply line status of exception.
What action must you take?
A. This indicates that supply line quantities are available but the quality is not up to the mark, so the quality issue must be resolved.
B. The indicates that supply line has an exception in manufacturing goods, so the supply line must be changed.
C. This indicates that supply line quantities are less than required, so additional quantities must be procured to meet the requirement.
D. This indicates that supply line quantities are not available, so inventory must be procured.
Your customer has received 50 boxes of item A (priced at $10 per box) and these items are transferred to the asset Inventory organization. There are no additional quantities in any of the inventory organizations apart from the received 50 boxes. After running all the necessary cost accounting and receipt accounting processes successfully, the item valuation for item A is still zero. What is the reason?
A. Items are not consigned items but ownership is still with the supplier.
B. Items are consigned items and ownership lies with the supplier.
C. Items are consigned and ownership is transferred to "owned".
D. Items are not consigned items and ownership is with the organization.