あなたを余裕でMCD-Level-1試験合格させます!100%試験高合格率保証 [2023]
MCD-Level-1問題集本日限定!無料アクセスが可能に!fromPassTest
質問 # 65
According to MuleSoft, what is the Center for Enablement's role in the new IT operating model?
- A. Implements line of business projects to enforce common security requirements
- B. Implements line of business projects to enforce common security requirements
- C. Centrally manages partners and consultants to implement line of business projects
- D. Creates and manages discoverable assets to be consumed by line of business developers
正解:D
解説:
Correct answer is Creates and manages discoverable assets to be consumed by line of business developers.
C4E does not get directly involved in projects.
質問 # 66
What DataWeave expression transforms the array a to the XML output?
- A. 1. 1. {(
2. 2. trains:
3. 3. a map ((engId, index) ->
4. 4. train: {
5. 5. TrainNumber: engId
6. 6.
7. 7. }
8. 8. )
9. )} - B. 1. 1. trains:
2. 2. a map ((engId, index) ->
3. 3. train: {
4. 4. TrainNumber: engId
5. 5.
6. 6. }
7. 7. ) - C. 1. 1. {
2. 2. trains:
3. 3. a map ((engId, index) ->
4. 4. train: {
5. 5. TrainNumber: engId
6. 6.
7. 7. }
8. 8. )
9. } - D. 1. 1. trains:
2. 2. {(
3. 3. a map ((engId, index) ->
4. 4. train: {
5. 5. TrainNumber: engId
6. 6.
7. 7. }
8. 8. )
9. 9. )}
正解:D
解説:
For such questions always look for Syntax:
I call it "Wrap the Map"
trains:
{(
When mapping array elements (JSON or JAVA) to XML, wrap the map operations in {(..)}
-{ } are defining the object
-( ) are transforming each element in the array as a key/value pair
質問 # 67
Refer to the exhibits. A company has defined this Book data type and Book example to be used in APIs. What is valid RAML for an API that uses this Book data type and Book example?
A)
B)
C)
D)
- A. Option B
- B. Option D
- C. Option C
- D. Option A
正解:B
質問 # 68
Refer to the exhibits.
The input array of strings is processed by the batch job that processes, fitters, and aggregates the values.
What is the last message logged by the Logger component after the batch job completes processing?
A)
B)
C)
D)
- A. Option B
- B. Option D
- C. Option C
- D. Option A
正解:B
質問 # 69
An app team is developing a mobile banking app. It took them two months to create their own APIs to access transaction information from a central database. The app team later found out that another team had already built an API that accesses the transaction information they need.
According to MuleSoft, what organization structure could have saved the app team two months of development time?
- A. Center of Excellence
- B. Center for Enablement
- C. MuleSoft Support Center
- D. Central API Review Board
正解:B
解説:
Reference:
Center for Enablement is correct answer .It is a cross-functional team typically staffed with members from central IT, line-of-business departments, and digital innovation teams charged with productizing, publishing, and harvesting reusable assets and best practices. In this case , app team would have checked first with Center for Enablement before developing their own API's. Hence could have avoided re-work
質問 # 70
What HTTP method in a RESTful web service is typically used to completely replace an existing resource?
- A. PATCH
- B. PUT
- C. POST
- D. GET
正解:B
解説:
PUT replaces the original version of the resource, whereas the PATCH method supplies a set of instructions to modify the resource
質問 # 71
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>
正解:A
質問 # 72
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
pedigree query params producer var - C. payload
pedigree query params - D. payload
正解:A
質問 # 73
A flow has a JMS Publish consume operation followed by a JMS Publish operation. Both of these operations have the default configurations. Which operation is asynchronous and which one is synchronous?
- A. Publish consume: Asynchronous. Publish: Asynchronous
- B. Publish consume: Synchronous. Publish: Synchronous
- C. Publish consume: Synchronous. Publish: Asynchronous.
- D. Publish consume: Asynchronous. Publish: Synchronous
正解:C
解説:
Publish consume: Synchronous. Publish: Asynchronous.
質問 # 74
Refer to the exhibit.
What is the response to a web client request to http://localhost:8081?
- A. Validation Error
- B. before
- C. null
- D. After
正解:A
解説:
質問 # 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 $(pay load .year)]*
- B. '#["Theyear is++payload-year"]'
- C. '#[The year is " + paytoad.year]'
- D. The year is #[payload.year]'
正解:B
質問 # 76
Refer to the exhibits.
The input array of strings is processed by the batch job that processes, filters, and aggregates the values. What is the last message logged by the Logger component after the batch job completes processing?
- A. [ ["A", "C", "D" ], ["E"] ]
- B. [''E'']
- C. [ "A", "C, "D", "E" ]
- D. [''D", "E"]
正解:A
質問 # 77
Refer to the exhibits.

A Mule application contains a Choice router. What is logged when the flow completes?
- A. "REGION"
- B. EU
- C. US
- D. ["US", "EU"]
正解:C
質問 # 78
Refer to the exhibits.

A web client submits the request to the HTTP Listener. What response message would be returned to web client?
- A. No response would be sent back to client and request will get errored out in Mule
- B. Start
- C. String is not blank
- D. End
正解:C
解説:
Correct answer is String is not blank.
------------------------------------------------------------------------------------------------------------------------------------------------- Here's specifically what is happening here:
1) Payload is successfully set to "Start"
2) The Is Blank String validator creates an Error Object because the payload is string "Start". Execution stops
#[error.description] = "String is not blank"
3) Because no error handler is defined, the Mule default error handler handles the error. Remember, at its heart, the Mule Default Error handler is an error handling scope with just an on error propagate
4) "String is not blank" is the error message returned to the requestor in the body of the HTTP requestHTTP Status Code: 500 Reference Diagram:
質問 # 79
Refer to the exhibits.
The orders.csv file is read, then processed to look up the orders in a database. The Mule application is debugged in Any point Studio and stops at the breakpoint.
What is the payload shown in the debugger at this breakpoint?
- A. "none"
- B. The entire CSV file
- C. The database response
- D. 0
正解:D
質問 # 80
Mule application contains ActiveMQ JMS dependency. Mule application was compiled and run successfully in Anypoint Studio. The mule application must now be exported from Anypoint Studio and shared with other developer. What export options should be selected to create the smallest JAR file that can be imported into other developer's Anypoint Studio and run successfully?
- A. De-select both Attach Project Sources and Include project modules and dependencies option
- B. Select the Include project modules and dependencies option only
- C. Select only Attach Project Sources only
- D. Select both Attach Project Sources and Include project modules and dependencies option
正解:C
解説:
Correct answer is Select only Attach Project Sources only
You must keep the Attach Project Sources option selected to be able to import the packaged JAR file back into a Studio workspace.
Deselect the Include project modules and dependencies option.
This option skips bundling the actual modules and external dependencies required to run the Mule application in a Mule runtime engine, creating a lightweight JAR file package that does not include any dependencies specified in the Mule application's pom.xml file.
The generated JAR file is not a functional deployable archive and cannot be deployed to a Mule runtime engine, but instead offers a way to archive only the source files that make up the Mule application. This is the same as using the -lightWeightPackage flag when packaging using the Mule Maven Plugin and is useful if you want to distribute your project to other Studio installations because it only keeps a reference to all its dependencies. When you import a lightweight package into Studio, all your dependencies are automatically downloaded MuleSoft Doc Ref : https://docs.mulesoft.com/studio/7.8/import-export-packages
質問 # 81
......
学習材料は有効なMCD-Level-1効率的問題集:https://www.passtest.jp/MuleSoft/MCD-Level-1-shiken.html