Refer to the exhibits The Mule application does NOT define any global error handlers.
A web client sends a POST request to the Multi application with this input payload The File
Write operation throws a FILECONNECTIVITY error. What response message is returned to the web client?
A. "ORDER NOT_CREATED"
B. "OTHER ERROR"
C. "File written"
D. "FILECONNECTIVITY"
Refer to theexhibits.
A Mule application has an HTTP Request that is configured with hardcoded values. To
change this, the Mule application is configured to use a properties file named config.yaml.
what valid expression can the HTTP Request host value be set to so that it is no longer
hardcoded?
A.
${training.host}
B.
${training:host}
C.
#[training:host]
D.
#[training.host]
${training.host}
What is output of Dataweave flatten function?
A. Object
B. Map
C. Array
D. LInkedHashMap
Explanation:
Correct answer is Array.
Flatten turns a set of subarrays (such as [ [1,2,3], [4,5,[6]], [], [null] ]) into a single, flattened
array (such as [ 1, 2, 3, 4, 5, [6], null ]).
This example defines three arrays of numbers, creates another array containing those
three arrays, and then uses the flatten function to convert the array of arrays into a single
array with all values.
Source
%dw 2.0
output application/json
var array1 = [1,2,3]
var array2 = [4,5,6]
var array3 = [7,8,9]
var arrayOfArrays = [array1, array2, array3]
---
flatten(arrayOfArrays)
Output
[ 1,2,3,4,5,6,7,8,9 ]
Refer to the exhibit. 
What is a valid expression for the Choice router’s when expression to route events to the
documenticShipping flow?
A.
0#[ payload = 'US' ]
B.
#[ payload == 'US' J
C.
#[ if(payload = 'US') J
D.
#[ if(payload == "US") ]
#[ payload == 'US' J
Refer to the exhibits.
A.
Option A
B.
Option B
C.
Option C
D.
Option D
Option A
Refer to the exhibit. The Batch Job processes, filters and aggregates records, What is the
expected output from the Logger component?
A.
[10. 20, 30. 40, 50, 60]
B.
[10. 20] [30, 40] [50, 60]
C.
[20, 40, 60]
D.
[20. 40] [60]
[20. 40] [60]
An API specification is designed using RAML. What is the next step to create a REST
Connector from this API specification?
A.
Download the API specification and build the interface using APIkit
B.
Publish the API specification to Any pointExchange
C.
Implement the API specification using flow designer in Design Center
D.
Add the specification to a Mule project's src/main/resources/api folder
Publish the API specification to Any pointExchange
A Mule application's HTTP Listener is configured with the HTTP protocol. The HTTP
listeners port attribute is configured with a property placeholder named http.port. The mule
application sets the http.port property placeholder's value to 9090.
The Mule application is deployed to CloudHub without setting any properties in the Runtime
manager Properties tab and a log message reports the status of the HTTP listener after the
Mule application deployment completes.
After the mule applications is deployed, what information is reported in the worker logs
related to the port on which the Mule application's HTTP Listener listens?
A. The HTTP Listener is listening on port 80
B. The HTTP Listener is listening on port 9090
C. The HTTP Listener is listening on port 8081
D. The HTTP Listener failed to bind to the port and is not listening for connections
Explanation:
Cloudhub expose services on port 8081 and override value in http.port with this one.
Sample log in Runtime Manager is below
21:15:53.148 08/08/2021 Worker-0 ArtifactDeployer.start.01 INFO
Listening for connections on 'http://0.0.0.0:8081'
| Page 1 out of 29 Pages |