[Jul-2023] Dumps Practice Exam Questions Study Guide for the MCD-Level-1 Exam
MCD-Level-1 Dumps with Practice Exam Questions Answers
NEW QUESTION # 45
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 property m the Consume operation equal to the destination query parameter
- B. Set a header In the Consume operation equal to the destination query parameter
- C. set a JSON payload before the Consume operation that contains the destination query parameter
- D. set a SOAP payload before the Consume operation that contains the destination query parameter
Answer: D
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 # 46
Refer to the exhibits.

A web client sends a POST request with the payload {"oid": "1000", "itemid": "AC200", "qty": "4" } to the Mule application. The File Write operation throws a FILE:CONNECTIVITY error.
What response message is returned to the web client?
- A. ''FILE:CONNECnvnY'
- B. "OTHER ERROR"
- C. "ORDER:NOT_CREATED"
- D. "File written"
Answer: A
NEW QUESTION # 47
Refer to the exhibits.
The web client sends a POST request to the ACME Order API with an XML payload. An error is returned.
What should be changed in the request so that a success response code is returned to the web client?
- A. Set a response header with the name Content-Type to a value of application/octet-stream
- B. Set a response header with the name Content-Type to a value of applkation/xml
- C. Set a request header with the name Content-Type to a value of applicatron/octet-stream
- D. Set a request header with the name Content-Type to a value of application/xml
Answer: D
NEW QUESTION # 48
A Mule project contains a MySQL Database dependency. The project is exported from Anypoint Studio so it can be deployed to CloudHub.
What export options create the smallest deployable archive that will successfully deploy to CloudHub?
What export option create their smallest deployable archive that will successfully deploy to CloudHub?
A)
B)
C)
D)
- A. Option D
- B. Option B
- C. Option C
- D. Option A
Answer: B
NEW QUESTION # 49
What is the output type of the DataWeave map operator?
- A. Object
- B. String
- C. Array
- D. Map
Answer: A
NEW QUESTION # 50
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. "END"
- C. ''ERROR2"
- D. Validation Error
Answer: C
NEW QUESTION # 51
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. addltem( { price: "100", item: "router", itemType: "cable" } )
- B. lookup( "addltem", { payload: { price: "100", item: "router", itemType: "cable" } > )
- C. addltem( { payload: { price: "100", item: "router", itemType: "cable" > } )
- D. lookup( "addltern", { price: "100", item: "router", itemType: "cable" } )
Answer: B
NEW QUESTION # 52
A Mule project contains a DataWeave module file WebStore dvA that defines a function named loginUser The module file is located in the projects src/main/resources/libs/dw folder What is correct DataWeave code to import all of the WebStore.dwl file's functions and then call the loginUser function for the login "[email protected]"?
A)
B)
C)

- A. Option D
- B. Option B
- C. Option C
- D. Option A
Answer: A
NEW QUESTION # 53
Refer to the exhibit.
What Database expression transforms the input to the output?
A)
B)
C)
D)
- A. Option D
- B. Option B
- C. Option C
- D. Option A
Answer: A
NEW QUESTION # 54
Refer to the exhibits. What payload is logged at the end of the main flow?
- A. order1order2order3order4
- B. order4
- C. [1, 2, 3, 4]
- D. [order1, order2, order3, order4]
Answer: B
NEW QUESTION # 55
A Mule application contains an ActiveMQ JMS dependency. The Mule application was developed in Anypoint Studio and runs successfully in Anypoint Studio.
The Mule application must now be exported from Anypoint Studio and shared with another developer.
What export options create the smallest JAR file that can be imported into the other developer's Anypoint Studio and run successfully?
- A. Option D
- B. Option B
- C. Option C
- D. Option A
Answer: A
NEW QUESTION # 56
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. [20, 40, 60]
- C. [20. 40] [60]
- D. [10. 20] [30, 40] [50, 60]
Answer: C
NEW QUESTION # 57
Refer to the exhibit.
What can be added to the flow to persist data across different flow executions?
- A. properties of the Mule runtime app object
- B. Properties of the Mule runtime flow object
- C. session variables
- D. Key/value pairs in the ObjectStore
Answer: D
NEW QUESTION # 58
Refer to the exhibit.
What is the output payload in the On Complete phase
- A. The records processed by all batch steps: [StepTwostepOnel, stepTwostepOne2, StepTwoStepOne3]
- B. The original payload: [1,2,31
- C. The records processed by the last batch step: [StepTwol, StepTwo2, StepTwo3]
- D. summary statistics with NO record data
Answer: B
NEW QUESTION # 59
Refer to the exhibits.
In the requestFlow an HTTP Request operation is configured to send an HTTP request with an XML payload.
The request is sent to the HTTP Listener in the transform Flow.
That flow transforms the incoming payload into JSON format and returns the response to the HTTP request.
The response of the request is stored in a target variable named the Result.
What is the payload at the Logger component after the HTTP Request?
- A. The returned JSON response
- B. null
- C. The original XML payload
- D. A non-empty Java object
Answer: D
NEW QUESTION # 60
Refer to the exhibits.

The <when> expression for the Choice router needs to be written.
What is a valid <when> expression to route Mule events to the non-default flow?
- A. #[ if( 'MuteSoff == paytoad.company) ]
- B. #[ company = "MuleSoft" ]
- C. #['MuleSoft' == paytoad'company']
- D. #[ if( company = "MuleSoft") ]
Answer: A
NEW QUESTION # 61
What should this endpoint return considering the API is build using standard practices?
http://dev.acme.com/api/patients?year=2021
- A. No patients
- B. All patients
- C. Patients from year 2021
- D. Patient with id 2021
Answer: C
Explanation:
Correct answer is Patients from year 2021.
The thing to note here is that year is not a query parameter and not the uri parameter. Hence it will filter all the patients and return the ones for whom year is 2021
NEW QUESTION # 62
......
Free MuleSoft Certified Developer MCD-Level-1 Exam Question: https://www.validvce.com/MCD-Level-1-exam-collection.html
