[2022年更新]MCD-Level-1まとめセット試験ガイド練習からあなたのMCD-Level-1試験を合格させます! [Q68-Q87]

Share

[2022年更新]MCD-Level-1まとめセット試験ガイド練習からあなたのMCD-Level-1試験を合格させます!

準備MCD-Level-1試験2022年最新のMuleSoft Certified Developer無制限210問題


MuleSoft MCD-Level-1 認定試験の出題範囲:

トピック出題範囲
トピック 1
  • アプリケーションでグローバル構成を定義して再利用する
  • API主導の接続とアプリケーションネットワークの利点を定義して説明する
トピック 2
  • APIkitによって生成されたフローを介してリクエストがどのようにルーティングされるかを説明します
  • クエリパラメータとURIパラメータをいつどのように定義するかを特定します
トピック 3
  • RAMLを使用してAPIパラメータ、リクエスト、レスポンスを定義します
  • APIライフサイクルのためのAnypointプラットフォームの機能と高レベルのコンポーネントを説明します
トピック 4
  • APIkitを使用してRAMLファイルから実装フローを作成します
  • RAMLを使用してAPIリソース、ネストされたリソース、およびメソッドを定義します
トピック 5
  • Muleアプリケーション用のRESTfulインターフェースを手動で作成します
  • IT配信ギャップを埋めるためのMuleSoftの提案を説明します
トピック 6
  • Choiceルーターを使用して、条件付きロジックに基づいてイベントをルーティングします
  • ターゲットパラメーターを使用してMuleイベントを強化します

 

質問 68
Refer to the exhibit.

This RAML specification includes a resource and method to retrieve accounts by account_type and industry.
What is the correct URI to get all retail finance accounts?

  • A. /accounts/account_type=retail/industry=finance
  • B. /accounts?account_type:retail&industry:finance
  • C. /accounts/retail/finance
  • D. /accounts?account_type=retail&industry=finance

正解: D

 

質問 69
Refer to the exhibit.

What is the response to a web client request to

  • A. Validation Error
  • B. null
  • C. After
  • D. before

正解: C

 

質問 70
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 develop fully functional Mule applications in a hosted development environment
  • D. To design and mock Mule application templates that must be implemented using Anypoint Studio

正解: C

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

 

質問 71
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. fun newProdCode{itemID: Number, productCategory: String) -> "PC-" ++ productCategory ++ (itemID as String)
  • C. function newProdCode(itemID: Number, productCategory: String) =
    "PC-" ++ productCategory ++ (itemID as String)
  • D. var newProdCode(itemID: Number, productCategory: String) ->
    "PC-" ++ productCategory ++ (itemID as String)

正解: A

 

質問 72
Refer to the exhibit.

What expression correctly specifies input parameters to pass the city and state values to the SQL query?
A)

B)

C)

D)

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

正解: D

 

質問 73
Which of the below is not a valid category for connector type?

  • A. Premium
  • B. Community
  • C. Select
  • D. Gold

正解: D

解説:
Gold is not valid category for connector types.
MuleSoft Doc Ref : https://docs.mulesoft.com/mule-runtime/3.7/anypoint-connectors#connector-support-categories

 

質問 74
Refer to the exhibits.
A web client sends sale data in a POST request to the Mule application. The Transform Message component then enrich the payload by prepending a vendor name to the sale data.
What is written to the sales.csv file when the flow executes?

  • A. An error message
  • B. The enriched payload in XML format
  • C. The enriched payload in JSON format
  • D. The enriched payload in CSV format

正解: C

 

質問 75
Refer to the exhibits.
A web client submits a request to below flow. What is the output at the end of the flow?


  • A. String
  • B. Object
  • C. Java
  • D. XML

正解: A

解説:
String is the correct answer as XML is of an Object type String

 

質問 76
How does APIkit determine the number of flows to generate from a RAML specification?

  • A. Creates a separate flow for each response status code
  • B. Creates a separate flow for each HTTP method
  • C. Creates a separate flow for each resource that contains child resources
  • D. Creates a separate flow for each resource

正解: B

解説:
APIKIt Creates a separate flow for each HTTP method

 

質問 77
What is not true about application properties?

  • A. Application properties can be defined in .yaml file only
  • B. Application properties can be overridden with system properties
  • C. Application properties can be encrypted
  • D. Application properties provide easier way to manage configurable values

正解: A

解説:
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

 

質問 78
A
Mule application contains two HTTP Listeners, each configured for different API endpoints:
http://acme.com/apis/orders and http: //acme .com/a pis/customers.
What base path value should be set in an HTT? Listener config element so that it can be used to configure both HTTP Listeners?

  • A. /apis/*
  • B. /apis/
  • C. /apis/orders|customers
  • D. /apis/?

正解: A

 

質問 79
A flow contains an HTTP Listener as the event source. What is the DataWeave expression to log the Content-Type header using a Logger component?

  • A. #["Content-Type: " + attributes.headers.'content-type']
  • B. #["Content-Type: " ++ headers.'content-type']
  • C. #["Content-Type: " ++ attributes.headers.'content-type']
  • D. #["Content-Type: " + headers.'content-type']

正解: C

解説:
Option 1 is the only correct choice due to two reasons. 1) Concatenation is always with ++ sign and not with + sign which makes option 2 and 3 wrong 2) hearders can be accessed with attributes. headers and not with only headers which makes option 4 incorrect

 

質問 80
Refer to the exhibits.


A Mule application contains a Choice router. What is logged when the flow completes?

  • A. US
  • B. ["US", "EU"]
  • C. EU
  • D. "REGION"

正解: A

 

質問 81
Refer to the exhibits.


A Mule application contains a Choice router. What is logged when the flow completes?

  • A. US
  • B. ["US", "EU"]
  • C. EU
  • D. "REGION"

正解: A

 

質問 82
Where would you create SLA Tiers for an API?

  • A. Anypoint Studio
  • B. API Manager
  • C. In RAML specifications
  • D. Exchange

正解: B

解説:
MuleSoft Doc Ref : https://docs.mulesoft.com/api-manager/2.x/policy-mule3-tutorial-manage-an-api#to-add-the-tier Steps to create SLA Tier are as follows:
1) In API Manager, in API Administration, click a version.
2) Check that the API supports resource-level policies: On the API version details page, in Status, click Configure Endpoint, and check that Type is RAML.
3) Choose the SLA Tiers, and click Add SLA Tier. Set up limit on SLA tier

 

質問 83
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

正解: D

 

質問 84
What is the correct syntax to define and call a function in Database?
A)

B)

C)

D)

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

正解: D

 

質問 85
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 application/xml
  • B. Set a request header with the name Content-Type to a value of applicatron/octet-stream
  • C. Set a response header with the name Content-Type to a value of application/octet-stream
  • D. Set a response header with the name Content-Type to a value of applkation/xml

正解: A

解説:
The HTTP 415 Unsupported Media Type client error response code indicates that the server refuses to accept the request because the payload format is in an unsupported format. The format problem might be due to the request's indicated Content-Type or Content-Encoding , or as a result of inspecting the data directly. As per RAML input is expected in application/xml.
Hence correct answer is Set a request header with the name Content-Type to a

 

質問 86
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 color query param
  • B. payload quantity var color query param
  • C. payload
  • D. payload quantity var

正解: D

 

質問 87
......

注目のMCD-Level-1まとめセット試験ガイドは最速合格できます:https://www.goshiken.com/MuleSoft/MCD-Level-1-mondaishu.html