Refer to the exhibits.
A web client sends a POST request to the HTTP Listener with the payload "Hello-". What
response is returned to the web client?
What response is returned to the web client?
A.
Hello- HTTP-] MS2-Three
B.
HTTP-JMS2-Three
C.
Helb-JMS1-HTTP-JMS2 -Three
D.
Hello-HTTP-Three
Hello- HTTP-] MS2-Three
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?
Refer to the exhibit.

The input array of strings is passed to the batch job, which does NOT do any filtering or aggregating. What payload is logged by the Logger component?
A. Summary report of processed records
B. [ "Apple", "Banana" ]
C. [ "Apple12", "Banana12" ]
D. [ "Apple1", "Banana1", 2 ]
A Mule flow has three Set Variable transformers. What global data structure can be used to
access the variables?
A.
Mule event attributes
B.
Mule event message
C.
Mule application properties
D.
Mule event
Mule event
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.
Refer to the exhibit.
The error occurs when a project is run in Anypoint Studio. The project, which has a
dependency that is not in the MuleSoft Maven repository, was created and successfully run
on a different computer.
What is the next step to fix the error to get the project to run successfully?
A. Edit the dependency in the Mule project's pom.xml file
B. Install the dependency to the computer's local Maven repository
C. Deploy the dependency to MuleSoft's Maven repository
D. Add the dependency to the MULE_HOME/bin folder
Explanation: As dependency is not present in Mulesoft Maven repository, we need to install the dependency on computer's local Maven repository. Option 3 is correct choice.
Which of the below is used by Mule application to manage dependencies which make sharing the projects lightweight and easier?
A. Configuration file
B. Global element
C. POM.xml
D. Cloudhub
POM.xml contains info about the project and configuration details used by Maven to build the project.
Which keyword do you use to create a new function in DataWeave?
A. function
B. fun
C. func
D. map
Explanation:
You can define your own DataWeave functions using the fun declaration in the header of a
DataWeave script. Sample is as below. ----------------------------------------
%dw 2.0
output application/json
fun toUpper(aString) = upper(aString)
---
toUpper("hello")
MuleSoft Doc Ref : https://docs.mulesoft.com/mule-runtime/4.1/dataweave-functions
| Page 1 out of 29 Pages |