Passing MuleSoft MCD-Level-1 Exam Using 2024 Practice Tests
MCD-Level-1 Study Guide Brilliant MCD-Level-1 Exam Dumps PDF
The MCD-Level-1 certification exam is a multiple-choice exam with 60 questions that must be completed in 120 minutes. MCD-Level-1 exam is available in English, Japanese, and Spanish. The passing score for the MCD-Level-1 exam is 70%, and the exam fee is $250.
How to book the MuleSoft Certified Developer - Level 1 Exam
These are following steps for registering the MuleSoft Certified Developer - Level 1 exam.
- Step 1: Visit to MuleSoft Exam Registration .
- Step 2: Sign up/Login to MuleSoft account.
- Step 3: Select local centre based on your country, date, time and confirm with a payment method.
NEW QUESTION # 70
Refer to the exhibit.
The default scope in choice router recursively calls the color flow.
A web client sends a PUT request to the HTTP listener with payload Blue.
What response is returned to the web client?
- A. A timeout error
- B. "Blk"
- C. "Green"
- D. ["Blue", "Red", "Blk"]
Answer: A
Explanation:
Sequence can be described as follows.
* When web client sends the request , it sends payload as Blue (mentioned in question)
* In first iteration this will go to default choice , which sets payload to Red
* Via default route , flow will call itself with payload as Red
* In second iteration , as payload is Red , it will go to first route in choice router which will set payload to Blk and second iteration will end returning back payload as Blk to first iteration.
* This Blk will be again set to payload and first iteration will end returning back response as Blk
NEW QUESTION # 71
Refer to the exhibits. A web client sends a POST request to the HTTP Listener and the Validation component in the Try scope throws an error.
What response message is returned to the web client?
- A. "ERROR1"
- B. Validation Error
- C. ''ERROR2"

- D. "ERROR1"
- E. "END"
- F. Validation Error
- G. ''ERROR2"
- H. "END"
Answer: C
NEW QUESTION # 72
Refer to the exhibits. A web client submits a request to http://localhost:8081/fliqhts?destination=SFO and the Web Service Consumer throws a WSC:BAD_REQUEST error.
What is the next step to fix this error?
- A. set a JSON payload before the Consume operation that contains the destination query parameter
- B. set a SOAP payload before the Consume operation that contains the destination query parameter
- C. set a property m the Consume operation equal to the destination query parameter
- D. Set a header In the Consume operation equal to the destination query parameter
Answer: B
Explanation:
As can be seen in error message , SOAP service findFlights expects the SOAP paylaod. This can be set using transform message processor which forms SOAP payload before the Consume operation that contains the destination query parameter
NEW QUESTION # 73
A Mule application contains two HTTP Listeners, each configured for different API endpoints: http://acme.com/apis/orders and http: //acme .com/a pis/customers.
What base path value should be set in an HTT? Listener config element so that it can be used to configure both HTTP Listeners?
- A. /apis/*
- B. /apis/?
- C. /apis/
- D. /apis/orders|customers
Answer: A
Explanation:
Option 2 is the correct answer as /api/* accespts everything starting with /api/
NEW QUESTION # 74
Refer to the exhibits.
What payload and quantity are togged at the end of the main flow?
- A. [orderlorder2order3order4, 14]
- B. [[1,2,3,4], 10]
- C. [[order1, order2, order3, order4], 14]
- D. [[1,2,3,4], 14]
Answer: D
NEW QUESTION # 75
Refer to the exhibits.
The Set Payload transformer's value is set to {'year': '2020'}.
What message value should be added to the Logger component to output the message 'The year is 2020', without hardcoding 2020?
- A. The year is #[payload.year]'
- B. '#[The year is " + paytoad.year]'
- C. '#[The year is $(pay load .year)]*
- D. '#["Theyear is++payload-year"]'
Answer: A
NEW QUESTION # 76
Refer to the exhibit.
What expression correctly specifies input parameters to pass the city and state values to the SQL query?
A)
B)
C)
D)
- A. Option A
- B. Option C
- C. Option B
- D. Option D
Answer: A
Explanation:
MuleSoft Documentation Reference : https://docs.mulesoft.com/db-connector/1.9/database-connector-select
NEW QUESTION # 77
Refer to the exhibits.
The Set Payload transformer's value is set to {'year': '2020'}.
What message value should be added to the Logger component to output the message 'The year is 2020', without hardcoding 2020?
- A. '#["Theyear is++payload-year"]'
- B. '#[The year is " + paytoad.year]'
- C. The year is #[payload.year]'
- D. '#[The year is $(pay load .year)]*
Answer: A
NEW QUESTION # 78
An API instance of type API endpoint with API proxy is created in API manager using an API specification from Anypoint Exchange. The API instance is also configured with an API proxy that is deployed and running in CloudHub.
An SLA- based policy is enabled in API manager for this API instance.
Where can an external API consumer obtain a valid client ID and client secret to successfully send requests to the API proxy?
- A. In the organization's public API portal in Anypoint Exchange, from an approved client application for the API proxy
- B. In Anypoint Studio, from components generated by APIkit for the API specification
- C. In Runtime Manager, from the properties tab of the deployed approved API proxy
- D. In Anypoint Studio, from components generated by Rest Connect for API specification
Answer: A
Explanation:
* When a client application is registered in Anypoint Platform, a pair of credentials consisting of a client ID and client secret is generated.
* When the client application requests access to an API, a contract is created between the application and that API.
* An API that is protected with a Client ID Enforcement policy is accessible only to applications that have an approved contract.
---------------------------------------------------------------------------------------------------------------------------------------------
In the organization's public API portal in Anypoint Exchange, from
NEW QUESTION # 79
Refer to the exhibit.
What should be changed to fix the 415 error?
- A. set the request Content-Type header to text/plain
- B. Set the request Content-Type header to application/] son
- C. set the response Content-Type header to application/json
- D. set the response Content-Type header to text/plain
Answer: B
Explanation:
The HTTP 415 Unsupported Media Type client error response code indicates that the server refuses to accept the request because the payload format is in an unsupported format. The format problem might be due to the request's indicated Content-Type or Content-Encoding , or as a result of inspecting the data directly. In this case as per RAML specification data is expected in application/json and in request Content-Type is set as
"text/plain" which is incorrect. Hence solution is set the request Content-Type header to application/json
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415
NEW QUESTION # 80
What execution model is used by For Each and Batch Job scopes?
- A. For Each is single-threaded and Batch Job is multi-threaded
- B. Both are single-threaded
- C. Both are multi-threaded
- D. Batch Job is single-threaded and For Each Is multi-threaded
Answer: A
NEW QUESTION # 81
A company has an API to manage departments, with each department identified by a unique deptld. The API was built with RAML according to MuleSoft best practices.
What is valid RAML to specify a method to update the details for a specific department?
A)
B)
C)
D)
- A. Option A
- B. Option C
- C. Option B
- D. Option D
Answer: D
NEW QUESTION # 82
Refer to the exhibit.
The Database Select operation returns five rows from a database. What is logged by the Logger component?
- A. "Object"
- B. "CaselnsensitrveHashMap"
- C. "Array"
- D. "LinkedHashMap"
Answer: C
NEW QUESTION # 83
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. Install the dependency to the computer's local Maven repository
- B. Edit the dependency in the Mule project's pom.xml file
- C. Deploy the dependency to MuleSoft's Maven repository
- D. Add the dependency to the MULE_HOME/bin folder
Answer: A
NEW QUESTION # 84
Refer to the exhibits.
The mule application is debugged in Anypoint Studio and stops at the breakpoint as shown in below exhibit.
What is the value of the payload displayed in the debugger at this breakpoint?
- A. Payload is always empty at the breakpoint
- B. Start
- C. Process
- D. Finished
Answer: B
Explanation:
Setting Breakpoints
To set breakpoints, right-click a building block, then select Toggle Breakpoint.
Studio applies a red dot to the building block's icon on the canvas.
When you run your application in Debug mode, Studio stops the flow execution at the breakpoint you have set, allowing you to check the Mule Event content in the Mule Debugger View.
Mule Ref Doc : Setting Breakpoints | MuleSoft Documentation
NEW QUESTION # 85
Refer to the exhibits. The main flow contains an HTTP Request in the middle of the flow. The HTTP Listeners and HTTP Request use default configurations.
A web client submits a request to the main flow's HTTP Listener that includes query parameters for the pedigree of the piano.
What values are accessible to the Logger component at the end of the main flow?
- A. payload
producer var - B. payload
- C. payload
pedigree query params - D. payload
pedigree query params producer var
Answer: A
Explanation:
In this case as outbound call is made using HTTP: POST /child , all attributes will be replaced by this invocation. Hence query parameter will not be accessible at logger. Hence correct answer is option 2
NEW QUESTION # 86
Refer to the exhibits. The Set Payload transformer in the addltem child flow 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 child flow to add a router call with the price of 100 to the order?
- A. lookup( "addltern", { price: "100", item: "router", itemType: "cable" } )
- B. addltem( { payload: { price: "100", item: "router", itemType: "cable" > } )
- C. addltem( { price: "100", item: "router", itemType: "cable" } )
- D. lookup( "addltem", { payload: { price: "100", item: "router", itemType: "cable" } > )
Answer: D
NEW QUESTION # 87
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. Hello-HTTP-Three
- C. HTTP-JMS2-Three
- D. Helb-JMS1-HTTP-JMS2 -Three
Answer: A
NEW QUESTION # 88
Refer to the exhibits.

The Batch Job scope processes the array of strings
After the Batch Job scope completes processing the input payload what information is logged by the Logger component?
- A.

- B.

- C.

- D.

Answer: C
NEW QUESTION # 89
Refer to the exhibits.

In the Choice router, the When expression for the domesticShipping route is set to "#[payload = 'FR']". What is logged after the Choice router completes?
- A. The result of the intemationalShipping flow
- B. A string with value "FR"
- C. The result of the domesticShipoing flow
- D. A DataVVeave syntax error
Answer: D
NEW QUESTION # 90
......
The MCD-Level-1 certification exam is a proctored exam that is conducted online. MCD-Level-1 exam consists of 60 multiple-choice questions that must be answered within 120 minutes. MCD-Level-1 exam is designed to test the candidate's knowledge of MuleSoft and their ability to apply that knowledge to real-world scenarios. MCD-Level-1 exam is graded on a pass/fail basis, and candidates must achieve a score of 70% or higher to pass the exam.
Free MCD-Level-1 Test Questions Real Practice Test Questions: https://www.prep4pass.com/MCD-Level-1_exam-braindumps.html
