How does APIkit determine the number of flows to generate from a RAML specification?
A. Creates a separate flow for each resource
B. Creates a separate flow for each HTTP method
C. Creates a separate flow for each response status code
D. Creates a separate flow for each resource that contains child res
APIKIt Creates a separate flow for each HTTP method.
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.
How should be the where clause written for the configured input parameters in such a way
that it achieves below SQL query?
A. WHERE city := ${city} AND state := ${state}
B. WHERE city = attributes.city AND state = attributes.state
C. WHERE city = :city AND state = :state
D. WHERE city := city AND state := state
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 DataWeave expression transforms the array a to the XML output?

A. 1.1. trains:
2.2. {(
3.3. a map ((engId, index) ->
4.4. train: {
5.5. TrainNumber: engId
6.6.
7.7. }
8.8. )
9.9. )}
B. 1.1. trains:
2.2. a map ((engId, index) ->
3.3. train: {
4.4. TrainNumber: engId
5.5.
6.6. }
7.7. )
C. 1.1. {(
2.2. trains:
3.3. a map ((engId, index) ->
4.4. train: {
5.5. TrainNumber: engId
6.6.
7.7. }
8.8. )
9.)}
D. 1.1. {
2.2. trains:
3.3. a map ((engId, index) ->
4.4. train: {
5.5. TrainNumber: engId
6.6.
7.7. }
8.8. )
9.}
Explanation:
For such questions always look for Syntax:
I call it "Wrap the Map" trains:
{(
When mapping array elements (JSON or JAVA) to XML, wrap the map operations in {(..)}
-{ } are defining the object
-( ) are transforming each element in the array as a key/value pair
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
Install the dependency to the computer's local Maven repository
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
According to MuleSoft. what is the first step to create a Modern API?
A.
Gather a list of requirements to secure the API
B.
Create an API specification and get feedback from stakeholders
C.
Performance tune and optimize the backend systems and network
D.
Create a prototype of the API implementation
Create an API specification and get feedback from stakeholders
| Page 1 out of 29 Pages |