Pass MCD-Level-1 Exam with Updated MCD-Level-1 Exam Dumps PDF 2022
MCD-Level-1 Exam Dumps - Free Demo & 365 Day Updates
MuleSoft MCD-Level-1 Exam Syllabus Topics:
| Topic | Details |
|---|---|
| Topic 1 |
|
| Topic 2 |
|
| Topic 3 |
|
| Topic 4 |
|
| Topic 5 |
|
| Topic 6 |
|
| Topic 7 |
|
| Topic 8 |
|
What is the duration, language, and format of 2VB-602:vSphere 6.5 Foundations
- Type of Questions: Single and Multiple Choice.
- Length of Examination: 120 minutes
- Number of Questions: 60
- Language: English
- Passing Score: 70%
NEW QUESTION 109
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. Helb-JMS1-HTTP-JMS2 -Three
- C. Hello-HTTP-Three
- D. HTTP-JMS2-Three
Answer: A
NEW QUESTION 110
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
model var - B. payload
- C. payload
make query param - D. payload
make query param model var
Answer: D
NEW QUESTION 111
What valid RAML retrieves details on a specific by its orderld as a URL parameter?
A)
B)
C)
D)
- A. Option A
- B. Option B
- C. Option D
- D. Option C
Answer: A
NEW QUESTION 112
Refer to the exhibit.
What is a valid expression for the Choice router's when expression to route events to the documenticShipping flow?
- A. #[ if(payload = 'US') J
- B. 0#[ payload = 'US' ]
- C. #[ if(payload == "US") ]
- D. #[ payload == 'US' J
Answer: D
NEW QUESTION 113
Refer to the exhibit.
What data is expected by the POST /accounts endpoint?
A)
B)
C)
D)
- A. Option B
- B. Option C
- C. Option A
- D. Option D
Answer: D
NEW QUESTION 114
Refer to the exhibit.
What is the response to a web client request to
- A. null
- B. After
- C. Validation Error
- D. before
Answer: C
Explanation:
NEW QUESTION 115
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. 0
- B. 1
- C. 2
- D. 3
Answer: D
NEW QUESTION 116
Which of the module is imported automatically in Dataweave scripts?
- A. dw::core
- B. dw::System
- C. dw::Crypto
- D. dw::Runtime
Answer: A
Explanation:
Core (dw::Core) This module contains core DataWeave functions for data transformations. It is automatically imported into any DataWeave script.
NEW QUESTION 117
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. The original XML payload
- C. null
- D. A non-empty Java object
Answer: D
NEW QUESTION 118
What is not true about application properties?
- A. Application properties can be overridden with system properties
- B. Application properties provide easier way to manage configurable values
- C. Application properties can be defined in .yaml file only
- D. Application properties can be encrypted
Answer: C
Explanation:
Application properties can be defined in .yaml or in .properties file.
MuleSoft Doc Ref : https://docs.mulesoft.com/mule-runtime/4.3/configuring-properties#supported_files
NEW QUESTION 119
Refer to the exhibit.
All three of the condition for the Choice router are true. What log messages are written?
- A. Route1, Route2
- B. Route1, Route2, Default
- C. Route 1
- D. Route2
Answer: C
NEW QUESTION 120
Refer to the exhibit.
A Mule event is composed of a hierarchy of objects. Where in the hierarchy are variables stored?
- A. Mule message
- B. Mule event
- C. Mule message payload
- D. Mule message attributes
Answer: B
Explanation:
NEW QUESTION 121
A function named newProdCode needs to be defined that accepts two input parameters, an integer value for itemID and a string value for productCategory, and returns a new product code.
What is the correct DataWeave code to define the newProdCode function?
- A. fun newProdCode(itemID: Number, productCategory: String) = "PC-" ++ productCategory ++ (itemID as String)
- B. function newProdCode(itemID: Number, productCategory: String) =
"PC-" ++ productCategory ++ (itemID as String) - C. fun newProdCode{itemID: Number, productCategory: String) -> "PC-" ++ productCategory ++ (itemID as String)
- D. var newProdCode(itemID: Number, productCategory: String) ->
"PC-" ++ productCategory ++ (itemID as String)
Answer: D
NEW QUESTION 122
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. [20, 40, 60]
- C. [10. 20] [30, 40] [50, 60]
- D. [10. 20, 30. 40, 50, 60]
Answer: A
NEW QUESTION 123
Refer to the exhibits. In the color flow , both the variable named color and payload are set to "red".
An HTTP POST request is then sent to the decideColor flow's HTTP Listener.
What is the payload value at the Logger component after the HTTP request completes?


- A. red
- B. blue
- C. white
- D. Error message
Answer: C
Explanation:
Correct answer is white.
Key thing to note here is that variables are not available to the called flow when it is invoked using HTTP request.
So the flow goes like below
1) Color variable is set to red
2) Payload is set to red
3) Child flow is called using HTTP request which means variables are not available in called flow (They would have been if flow reference activity would have been used)
4) Hence set payload activity will set payload to white as color variable is null
5) Payload returned in main flow is white.
6) So finally output of logger is white
NEW QUESTION 124
Refer to the exhibit.
What is the output payload in the On Complete phase
- A. The records processed by the last batch step: [StepTwol, StepTwo2, StepTwo3]
- B. summary statistics with NO record data
- C. The records processed by all batch steps: [StepTwostepOnel, stepTwostepOne2, StepTwoStepOne3]
- D. The original payload: [1,2,31
Answer: B
NEW QUESTION 125
Refer to the exhibit.
What DataWeave expression transforms the conductorlds array to the XML output?
A)
B)
C)
D)
- A. Option A
- B. Option B
- C. Option D
- D. Option C
Answer: A
NEW QUESTION 126
Refer to the exhibit.
All three of the condition for the Choice router are true. What log messages are written?
- A. Route1, Route2
- B. Route1, Route2, Default
- C. Route 1
- D. Route2
Answer: C
NEW QUESTION 127
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
quantity var - B. payload
- C. payload
quantity var color query param - D. payload
color query param
Answer: B
NEW QUESTION 128
Refer to the exhibit.
What can be added to the flow to persist data across different flow executions?
- A. session variables
- B. Key/value pairs in the ObjectStore
- C. properties of the Mule runtime app object
- D. Properties of the Mule runtime flow object
Answer: B
NEW QUESTION 129
Refer to the exhibit.
What is the response to a web client request to http://localhost:8081?
- A. After
- B. null
- C. Validation Error
- D. before
Answer: A
NEW QUESTION 130
Refer to the exhibit.
In the execution of the Scatter-Gather, the "steep 1 sec" Flow Reference takes about 1 second to complete, and the "sleep 5 sees" Row Reference takes about 5 seconds to complete.
About how many seconds does it take from the time the Scatter-Gather is called until the Set Payload transformer is called?
- A. 0
- B. 1
- C. 2
- D. 3
Answer: C
NEW QUESTION 131
......
MCD-Level-1 Dumps - Pass Your Certification Exam: https://www.briandumpsprep.com/MCD-Level-1-prep-exam-braindumps.html
