What is the correct way to format the decimal 200.1234 as a string to two decimal places?
A. 200.1234 as string {format: ".0#"}
B. 200.1234 as string as format: ".0#"
C. 200.1234 as String {format: ".0#"}
D. 200.1234 as String as format: ".0#"
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. Centrally manages partners and consultants to implement line of business projects.
C. Implements line of business projects to enforce common security requirements.
D. Creates and manages discoverable assets to be consumed by line of business developers.
What MuleSoft product enables publishing, sharing, and searching of APIs?
A. Runtime Manager
B. Exchange
C. API Notebook
D. API Designer
In an application network. If the implementation but not the interface of a product API changes, what needs to be done to the other APIs that consume the product API?
A. The applications associated with the other APIs must be restarted
B. The applications associated with the other APIs must be recoded
C. The other APIs must be updated to consume the updated product API
D. Nothing needs to be changed in the other APIs or their associated applications
Refer to the exhibits.

The Validation component in the private flow throws an error. What response message is returned to a client request to the main flow's HTTP Listener?
A. Error - private flow
B. Error - main flow
C. Success - main flow
D. Validation Error
Refer to the exhibit.

What is the correct way to create a user?


A. Option A
B. Option B
C. Option C
D. Option D
What valid RAML retrieves details on a specific by its orderld as a URL parameter?

A. Option A
B. Option B
C. Option C
D. Option D
An HTTP Request operation sends an HTTP request with a non-empty JSON object payload to an external
HTTP endpoint. The response from the external HTTP endpoint returns an XML body. The result is stored
in a target named the Result.
What is the payload at the event processor after the HTTP Request?
A. The XML response body
B. null
C. The original JSON request body
D. A non-empty Java object
Refer to the exhibits.

The Set Payload transformer In the addltem subflow uses DataWeave to create an order object. What is the correct DataWeave code for the Set Payload transformer in the createOrder flow to use the addltem subflow to add a router cable with the price of 100 to the order?
A. addltemf { payload: { price: "100", item: "router", itemType: "cable" } > )
B. lookupf "addltem", { payload: { price: "100", item: "router", itemType: "cable" } } )
C. addltemf { price: "100", item: "router", itemType: "cable" })
D. lookupf "addltem", { price: "100", item: "router", itemType: "cable" } )
Refer to the exhibits.

The main flow contains a Flow Reference to the child flow. A web client sends a GET request to the main
flow's HTTP Listener that includes a make query parameter.
What values are accessible in the child flow?
A. payload
B. payload make query param
C. payload model var
D. payload make query param model var