Guaranteed Success in MuleSoft Certified Developer MCD-Level-1 Exam Dumps
MuleSoft MCD-Level-1 Daily Practice Exam New 2023 Updated 226 Questions
NEW QUESTION # 106
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 recoded
- B. Nothing needs to be changed in the other APIs or their associated applications
- C. The other APIs must be updated to consume the updated product API
- D. The applications associated with the other APIs must be restarted
Answer: B
Explanation:
Correct answer is Nothing needs to be changed in the other APIs or their associated applications This is the benefit of having separate interface layer. As there are no changes to interface , no changes are required on the API's which consumes this API in context
NEW QUESTION # 107
Refer to the exhibit. The Batch Job processes, filters and aggregates records, What is the expected output from the Logger component?

- A. [20, 40, 60]
- B. [10. 20, 30. 40, 50, 60]
- C. [10. 20] [30, 40] [50, 60]
- D. [20. 40] [60]
Answer: D
NEW QUESTION # 108
Refer to the exhibit.
What Database expression transforms the input to the output?
A)
B)
C)
D)
- A. Option A
- B. Option C
- C. Option B
- D. Option D
Answer: B
NEW QUESTION # 109
Refer to the exhibits.
What is valid text to set the field in the Database connector configuration to the username value specified in the config.yaml file?
- A. #[db:username]
- B. #[db.username]
- C. ${db.username>
- D. ${db:username>
Answer: C
NEW QUESTION # 110
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 written"
- B. "ORDER:NOT_CREATED"
- C. ''FILE:CONNECnvnY'
- D. "OTHER ERROR"
Answer: B
NEW QUESTION # 111
Refer to the exhibit.
What should be changed to fix the 415 error?
- A. set the response Content-Type header to text/plain
- B. set the response Content-Type header to application/json
- C. Set the request Content-Type header to ap pi I cation/] son
- D. set the request Content-Type header to text/plain
Answer: C
NEW QUESTION # 112
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. "END"
Answer: C
Explanation:
NEW QUESTION # 113
A Mule project contains a DataWeave module like WebStore.dwl that defines a function named loginUser. The module file is located in the project's src/main/resources/libs/etl 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. 1. 1. import * from libs::etl::WebStore
2. 2. ---
3. 3. loginUser("[email protected]") - B. 1. 1. import libs.etl
2. 2. ---
3. 3. WebStore.loginUser("[email protected]") - C. 1. 1. import * from libs::etl
2. 2. ---
3. 3. WebStore::loginUser("[email protected]") - D. 1. 1. import libs.etl.WebStore
2. 2. ---
3. 3. loginUser("[email protected]")
Answer: A
Explanation:
* To use custom modules, you need to import the module or functions you want to use by adding the import directive to the head of your DataWeave script, for example:
1) Does not identify any functions to import from the String module:
import dw::core::Strings
2) To identify a specific function to import from the String module:
import camelize, capitalize from dw::core::Strings
3) To import all functions from the String module:
import * from dw::core::Strings
The way you import a module impacts the way you need to call its functions from a DataWeave script. If the directive does not list specific functions to import or use * from to import all functions from a function module, you need to specify the module when you call the function from your script.
* In given scenario, it's mentioned to import all of the WebStore.dwl
So correct answer is:
NEW QUESTION # 114
From which application , Organization Administrators can approve/revoke/delete SLA tier access requests
- A. API Portal
- B. API Exchange
- C. API Gateway
- D. API Manager
Answer: D
Explanation:
Organization Administrators can approve/revoke/delete SLA tier access requests via API Manager only
NEW QUESTION # 115
By default, what happens to a file after it is read using an FTP connector Read operation?
- A. The file is deleted from the folder
- B. The file is renamed in the same folder
- C. The file is moved to a different folder
- D. The file stays in the same folder unchanged
Answer: C
NEW QUESTION # 116
Which of the below functionality is provided by zip operator in DataWeave?
- A. Merges elements of two lists (arrays) into a single list
- B. Used for sending attachments
- C. Minimize the size of long text using encoding.
- D. All of the above
Answer: A
Explanation:
Correct answer is Merges elements of two lists (arrays) into a single list MuleSoft Doc Reference : https://docs.mulesoft.com/mule-runtime/4.3/dw-core-functions-zip
NEW QUESTION # 117
Refer to the exhibit.
What Database expression transforms the input to the output?
A)
B)
C)
D)
- A. Option A
- B. Option C
- C. Option D
- D. Option B
Answer: C
Explanation:
This kind of questions are best solved with filtering technique. Key thing to note here is XML attributes are always access by @ notation. So in this example orderId can be accessed as @OrderId which makes option 3 and option 4 false. Now difference in optin and option 2 is in mapping of lineItemPrice. Correct syntax to format a String in Numbse is value.price as Number. Hence option 2 is correct
NEW QUESTION # 118
Which keyword do you use to create a new function in DataWeave?
- A. map
- B. function
- C. func
- D. fun
Answer: D
Explanation:
You can define your own DataWeave functions using the fun declaration in the header of a DataWeave script. Sample is as below. ----------------------------------------
%dw 2.0
output application/json
fun toUpper(aString) = upper(aString)
---
toUpper("hello")
MuleSoft Doc Ref : https://docs.mulesoft.com/mule-runtime/4.1/dataweave-functions
NEW QUESTION # 119
Refer to the exhibits.
The Mule application does NOT define any global error handlers.
The Validation component in the private flow throws an error
What response message is returned to a web client request to the main flow's HTTP Listener?
- A. "Parent error"
- B. "Parent completed"
- C. ''Child error"
- D. "Validation Error"
Answer: D
NEW QUESTION # 120
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. Implement the API specification using flow designer in Design Center
- C. Publish the API specification to Any point Exchange
- D. Add the specification to a Mule project's src/main/resources/api folder
Answer: C
Explanation:
API Exchange creates REST conenctor automtaically once API is published. Hence correct answer is Publish the API specification to Any point Exchange
NEW QUESTION # 121
Refer to the exhibits. What payload is logged at the end of the main flow?
- A. order4
- B. [1, 2, 3, 4]
- C. order1order2order3order4
- D. [order1, order2, order3, order4]
Answer: A
NEW QUESTION # 122
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 request header with the name Content-Type to a value of applicatron/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 application/xml
- D. Set a response header with the name Content-Type to a value of application/octet-stream
Answer: C
NEW QUESTION # 123
Refer to the exhibit.
The Database Select operation returns five rows from a database. What is logged by the Logger component?
- A. "Array"
- B. "LinkedHashMap"
- C. "Object"
- D. "CaselnsensitrveHashMap"
Answer: A
NEW QUESTION # 124
Refer to the exhibit.
The Mule application Is debugged in Any point Studio and stops at the breakpoint What is the value of the payload displayed In the debugger at this breakpoint?
- A. Complete"
- B. "Processing"
- C. "Start"
- D. 0
Answer: C
NEW QUESTION # 125
Refer to the exhibit.
All three of the condition for the Choice router are true. What log messages are written?
- A. Route1, Route2
- B. Route2
- C. Route1, Route2, Default
- D. Route 1
Answer: D
NEW QUESTION # 126
What is the main purpose of flow designer in Design Center?
- A. To design API RAML files in a graphical way
- B. To design and develop fully functional Mule applications in a hosted development environment
- C. To design and mock Mule application templates that must be implemented using Anypoint Studio
- D. To define API lifecycle management in a graphical way
Answer: B
Explanation:
Its primary function is to design and develop fully functional Mule applications in a hosted development environment.
NEW QUESTION # 127
......
Test Engine to Practice MCD-Level-1 Test Questions: https://interfacett.braindumpquiz.com/MCD-Level-1-exam-material.html