Refer to the exhibits.
A. Option A
B. Option B
C. Option C
D. Option D
According to MuleSoft, what is the Center for Enablement’s role in the new IT operating model?
A. Implements line of business projects to enforce common security requirements
B. Creates and manages discoverable assets to be consumed by line of business developers
C. Centrally manages partners and consultants to implement line of business projects
D. Implements line of business projects to enforce common security requirements
Correct answer is Creates and manages discoverable assets to be consumed by line of
business developers.
C4E does not get directly involved in projects.
Explanation: Correct answer is {customerID}.
A. var toUpper(userName) -> upper(userName)
B. fun toUpper(userName) = upper(userName)
C. fun toUpper(userName) -> upper(userName)
D. var toUpper(userName) = upper(userName)
A function named toUpper needs to be defined that accepts a string named userName and
returns the string in uppercase.
What is the correct DW code to define the toUpper function?
How would you debug Mule applications?
A. By Deploying apps on production
B. Checking RAML specifications
C. Using debugger component
D. Use third party debugger application
Debugger can be used to debug applications to see event data movine from one flow to other.
What is the trait name you would use for specifying client credentials in RAML?
A. headers
B. client-id
C. client-id-required
D. cannot be specified in RAML
Explanation:
client-id-required enforces clients to add client_id and client_secret.
Please refer to below steps.
Add a section called traits: at the root level to define query parameters:
•traits:
- client-id-required:
queryParameters:
client_id:
type: string
client_secret:
type: string
2) Reference the trait in each of the methods to specify that each of the methods
require these query parameters. After each method in the RAML file, add is:
[client-id-required]. For example:
/users:
get:
is: [client-id-required]
description: Gets a list of JSONPlaceholder users.
Refer to the exhibit.
How should the WHERE clause be changed to set the city and state values from the
configured input parameters?
A. Option A
B. Option B
C. Option C
D. Option D
A web client sends a request to http;//localhost:8081?dept=sales. What is the correct DataWeave expression to access the value of dept?
A.
attributes.queryParams.dept
B.
attributes.dept
C.
message.queryParams.dept
D.
vars.dept
attributes.queryParams.dept
What is the difference between a subflow and a sync flow?
A. No difference
B. Subflow has no error handling of its own and sync flow does
C. Sync flow has no error handling of its own and subflow does
D. Subflow is synchronous and sync flow is asynchronous
Explanation:
Correct answer is Subflow has no error handling implementation where as sync flow has Subflow:
A subflow processes messages synchronously (relative to the flow that triggered its
execution) and always inherits both the processing strategy and exception strategy
employed by the triggering flow. While a subflow is running, processing on the triggering
flow pauses, then resumes only after the subflow completes its processing and hands the
message back to the triggering flow.
Synchronous Flow:
A synchronous flow, like a subflow, processes messages synchronously (relative to the
flow that triggered its execution). While a synchronous flow is running, processing on the
triggering flow pauses, then resumes only after the synchronous flow completes its
processing and hands the message back to the triggering flow. However, unlike a subflow,
this type of flow does not inherit processing or exception strategies from the triggering flow.
This type of flow processes messages along a single thread, which is ideally suited to
transactional processing.
Page 1 out of 29 Pages |