Mulesoft MCD-Level 1 Real Exam Questions
The questions for MCD-Level 1 were last updated at Nov 19,2024.
- Exam Code: MCD-Level 1
- Exam Name: MuleSoft Certified Developer - Level 1 (Mule 4)
- Certification Provider: Mulesoft
- Latest update: Nov 19,2024
Refer to the exhibits.
The two Mule configuration files belong to the same Mule project. Each HTTP Listener is configured with the same host string and the port number, path, and operation values are shown in the display names.
What is the minimum number of global elements that must be defined to support all these HTTP Listeners?
- A . 1
- B . 2
- C . 3
- D . 4
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]
Refer to the exhibits.
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]
Refer to the exhibit.
The API needs to be updated using the company-wide standard for the Plan data type. The Object data type has already been published in Anypoint Exchange with the global reference. ACME/DataTypes/PlanDataType.raml.
What is a valid RAML specification that reuses the Plan data type?
A)
B)
C)
D)
- A . Option A
- B . Option B
- C . Option C
- D . Option D
Refer to the exhibit.
What is the correct DataWeave expression for the Set Payload transformer to call the createCustomerObject flow with values for the first and last names of a new customer?
- A . lookupC createCustomerObJect( "Alice", "Green- ) )
- B . createCustomerObject( { first: "Alice", last: "Green" > )
- C . lookupf "createCustomerObject", { first: "Alice", last: "Green" > )
- D . createCustomerObject( "Alice", "Green")
Refer to the exhibit.
What is the correct DataWeave expression for the Set Payload transformer to call the createCustomerObject flow with values for the first and last names of a new customer?
- A . lookupC createCustomerObJect( "Alice", "Green- ) )
- B . createCustomerObject( { first: "Alice", last: "Green" > )
- C . lookupf "createCustomerObject", { first: "Alice", last: "Green" > )
- D . createCustomerObject( "Alice", "Green")
Refer to the exhibits.
The main flow contains an HTTP Request. The HTTP Listeners and HTTP Request use default configurations.
What values are accessible in the child flow after a web client submits a request to http://localhost:8081/order? col or = red?
- A . payload
- B . payload quantity var
- C . payload
color query param - D . payload
quantity var color query param
A Mule application contains a global error handler configured to catch any errors.
Where must the global error handler be specified so that the global error handler catches all errors from flows without their own error handlers?
- A . A configuration properties file
- B . Nowhere, the global error handler is automatically used
- C . A global element
- D . The pom.xml file
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
Refer to the exhibit.
The main flow contains an HTTP Request in the middle of the flow. The HTTP Listeners and HTTP request use default configurations.
What values are accessible to the Logger at the end of the flow after a web client submit request to http://local:801/order?color=red?
- A . payload
- B . payload quantity var
- C . payload color query param
- D . payload quantity var color query param