[May-2024] MCD-Level-1 Free PDF from BraindumpsPrep [Q40-Q58]

Share

May-2024 Latest BraindumpsPrep MCD-Level-1 Exam Dumps with PDF and Exam Engine Free Updated Today!

Following are some new MCD-Level-1 Real Exam Questions!

NEW QUESTION # 40
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

Answer: B

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.


NEW QUESTION # 41
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: B

Explanation:
option 3 is the correct syntz to access application properties


NEW QUESTION # 42
A Scatter-Gather processes three separate HTTP requests. Each request returns a Mule event with a JSON payload. What is the final output of the Scatter-Gather?

  • A. An Object containing all three JSON payload Objects
  • B. An Array of the three Mule event Objects
  • C. An Array of the three JSON payload Objects
  • D. An Object containing all three Mule event Objects

Answer: D

Explanation:
Correct answer is An Object containing all three Mule event Objects
The Scatter-Gather component is a routing event processor that processes a Mule event through different parallel processing routes that contain different event processors. Each route receives a reference to the Mule event and executes a sequence of one or more event processors. Each of these routes uses a separate thread to execute the event processors, and the resulting Mule event can be either the same Mule event without modifications or a new Mule event with its own payload, attributes, and variables. The Scatter-Gather component then combines the Mule events returned by each processing route into a new Mule event that is passed to the next event processor only after every route completes successfully.
The Scatter-Gather component executes each route in parallel, not sequentially. Parallel execution of routes can greatly increase the efficiency of your Mule application and may provide more information than sequential processing.
Sample output is as below
Table Description automatically generated with low confidence

MuleSoft Documentation reference : https://docs.mulesoft.com/mule-runtime/4.3/scatter-gather-concept


NEW QUESTION # 43
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. "Validation Error"
  • B. "Parent error"
  • C. "Parent completed"
  • D. ''Child error"

Answer: A


NEW QUESTION # 44
Does a root element required when creating a XML response using Dataweave?

  • A. Depends on requirement
  • B. Not required
  • C. None of these
  • D. Always required

Answer: D

Explanation:
Root element is always required while creating XML response in DataWeave transformation


NEW QUESTION # 45
Refer to the exhibit.

What data is expected by the POST /accounts endpoint?
A)

B)

C)

D)

  • A. Option C
  • B. Option D
  • C. Option A
  • D. Option B

Answer: B


NEW QUESTION # 46
Refer to the exhibit.
How should the WHERE clause be changed to set the city and state values from the configured input parameters?

  • A.
  • B.
  • C.
  • D.

Answer: A


NEW QUESTION # 47
From which application , Organization Administrators can approve/revoke/delete SLA tier access requests

  • A. API Manager
  • B. API Exchange
  • C. API Gateway
  • D. API Portal

Answer: A

Explanation:
Organization Administrators can approve/revoke/delete SLA tier access requests via API Manager only


NEW QUESTION # 48
Refer to the exhibit. The input array of strings is passed to the batch job, which does NOT do any filtering or aggregating. What payload is logged by the Logger component?

  • A. Summary report of processed records
  • B. [ "Apptel", "Bananal", 2 ]
  • C. [ "Apptel2", "Bananal2" ]
  • D. [ "Apple", "Banana" ]

Answer: D


NEW QUESTION # 49
Refer to the below exhibit. A Mule application configures a property placeholder file named config.yaml to set some property placeholders for an HTTP connector.
What is the valid properties placeholder file to set these values?

  • A. 1. http:
    2. basepath: "api"
    3. host : "localhost"
    4. port : "8081"
    (Correct)
  • B. 1. http.host = localhost
    2. http.port = 8081
  • C. 1. http:
    2. host = "localhost"
    3. port = "8081"
  • D. 1. {
    2. http:
    3. basePath: "api",
    4. port: "8081",
    5. host: " localhost"

Answer: A

Explanation:
Correct answer is as below as it follows the correct syntax
http:
basepath: "api"
host : "localhost"
port : "8081"


NEW QUESTION # 50
A web client submits a request to http://localhost:8081/books/0471767840. The value "0471767840" is captured by a Set Variable transformer to a variable named booklSBN.
What is the DataWeave expression to access booklSBN later in the flow?

  • A. vars. booklSBN
  • B. booklSBN
  • C. attributes.booklSBN
  • D. flowVars.booklSBN

Answer: A


NEW QUESTION # 51
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 # 52
What is the main purpose of flow designer in Design Center?

  • A. To design API RAML files in a graphical way
  • B. To define API lifecycle management in a graphical way
  • C. To design and mock Mule application templates that must be implemented using Anypoint Studio
  • D. To design and develop fully functional Mule applications in a hosted development environment

Answer: D

Explanation:
Its primary function is to design and develop fully functional Mule applications in a hosted development environment.


NEW QUESTION # 53
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. #[ company = "MuleSoft" ]
  • B. #['MuleSoft' == paytoad'company']
  • C. #[ if( company = "MuleSoft") ]
  • D. #[ if( 'MuteSoff == paytoad.company) ]

Answer: D


NEW QUESTION # 54
An API specification is designed using RAML. What is the next step to create a REST Connector from this API specification?

  • A. Implement the API specification using flow designer in Design Center
  • B. Publish the API specification to Any point Exchange
  • C. Add the specification to a Mule project's src/main/resources/api folder
  • D. Download the API specification and build the interface using APIkit

Answer: B

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 # 55
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. "OTHER ERROR"
  • B. "File written"
  • C. "ORDER:NOT_CREATED"
  • D. ''FILE:CONNECnvnY'

Answer: C


NEW QUESTION # 56
Which of the below is used by Mule application to manage dependencies which make sharing the projects lightweight and easier?

  • A. POM.xml
  • B. Cloudhub
  • C. Global element
  • D. Configuration file

Answer: A

Explanation:
POM.xml contains info about the project and configurationn details used by Maven to build the project


NEW QUESTION # 57
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 Anypoint Studio, from components generated by APIkit for the API specification
  • B. In the organization's public API portal in Anypoint Exchange, from an approved client application for the API proxy
  • C. In Anypoint Studio, from components generated by Rest Connect for API specification
  • D. In Runtime Manager, from the properties tab of the deployed approved API proxy

Answer: B

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.
--------------------------------------------------------------------------------------------------------------------------------------------- Correct answer: In the organization's public API portal in Anypoint Exchange, from an approved client application for the API proxy


NEW QUESTION # 58
......


Resources From:

  1. 2024 Latest BraindumpsPrep MCD-Level-1 Exam Dumps (PDF & Exam Engine) Free Share: https://www.briandumpsprep.com/MCD-Level-1-prep-exam-braindumps.html

Free Resources from BraindumpsPrep, We Devoted to Helping You 100% Pass All Exams!