[2024年10月] 厳密検証されたMCD-Level-1日本語問題集と解答でMCD-Level-1日本語問題集と正解付き [Q46-Q61]

Share

[2024年10月] 厳密検証されたMCD-Level-1日本語問題集と解答でMCD-Level-1日本語問題集と正解付き

ベストMuleSoft Certified Developer学習ガイドはMCD-Level-1日本語試験合格させます

質問 # 46
展示品をご参照ください。メイン フローには、子フローの HTTP リスナーを呼び出すように構成された HTTP リクエスト オペレーションが含まれています。
Web クライアントは、sty クエリ パラメーターを 30 に設定して GET リクエストを HTTP リスナーに送信します。
HTTP リクエスト オペレーションが完了した後、メイン フローの Logger コンポーネントの Mule イベントのどの部分が、HTTP リクエスト オペレーションに入力された Mule イベントと同じですか?

  • A. ペイロードとすべての変数
  • B. すべての変数
  • C. Mule イベント全体
  • D. ペイロードとすべての属性

正解:A


質問 # 47
展示を参照してください。

HTTP リスナーのパス属性に URI パラメーターとして顧客 ID を追加するための正しい構文は何ですか?

  • A. {顧客 ID}
  • B. ${顧客ID}
  • C. #[顧客ID]
  • D. (顧客ID)

正解:A


質問 # 48
展示を参照してください。バッチ ジョブはレコードを処理、フィルタリング、集計します。ロガー コンポーネントからの期待される出力は何ですか?

  • A. [20. 40][60]
  • B. [10. 20] [30、40] [50、60]
  • C. [20、40、60]
  • D. [10. 20、30、40、50、60]

正解:A

解説:
* Batch scope has filter criteria which says paylod mod 2 = 0 whch means only 2, 4 and 6 will be in batch scope.
* So payload for each of these will be incremented by 10.
* Aggregator has batch size defined as 2. So it will process in batch of two records.
* Hence option 3 is correct answer.
[20,40]
[60]
Behavior with aggregator configured with fixed size
In this scenario, the batch step sends the processed records to an aggregator, which starts processing the records and buffering them until the configured aggregator's size is reached. After that, the aggregator sends the aggregated records to the stepping queue.
Diagram Description automatically generated

The batch job builds record blocks of the configured block size and sends them to their corresponding batch step for processing. Each batch step receives one or more record blocks and starts processing them in parallel.
After the batch step processes a record, the batch step sends the record to the aggregator for further processing.
The aggregator continues processing records until the number of aggregated records reaches the configured aggregator's size.
https://docs.mulesoft.com/mule-runtime/4.3/batch-processing-concept


質問 # 49
Mule アプリケーションをコンパイルするためのフローにおける最小要件は何ですか?

  • A. ソースとプロセッサの両方
  • B. イベントソース
  • C. エラーハンドラ
  • D. イベントプロセッサ

正解:D

解説:
Process section is must to get compiles. Process section must have one or more processors


質問 # 50
API 実装が CloudHub にデプロイされたので、管理する必要があります。IT 部門は、新しい Mule アプリケーションが API プロキシとして機能するために追加の仮想コアを割り当てません。
現在の仮想コアの使用状況を維持しながら、Mule アプリケーションを API Manager で管理できるようにするには、次のステップは何でしょうか?

  • A. 同じ API 実装を VPC の背後にデプロイし、API Manager に接続するように VPC を構成します。
  • B. 自動検出を使用して API Manager に登録するように API 実装を変更します。
  • C. Mule アプリケーションの JAR ファイルを API Manager の API インスタンスにアップロードします。
  • D. 同じ API 実装を Runtime Manager に登録して API Manager に接続します

正解:B

解説:
Correct answer is Modify the API implementation to use auto-discovery to register with API Manager API Autodiscovery Configuring autodiscovery allows a deployed Mule runtime engine (Mule) application to connect with API Manager to download and manage policies and to generate analytics data. Additionally, with autodiscovery, you can configure your Mule applications to act as their own API proxy.
When autodiscovery is correctly configured in your Mule application, you can say that your application's API is tracked by (green dot) or paired to API Manager. You can associate an API in a Mule setup with only one autodiscovery instance at a given time.
MuleSoft Doc Ref : https://docs.mulesoft.com/api-manager/2.x/api-auto-discovery-new-concept


質問 # 51
Mule アプリケーションには、あらゆるエラーをキャッチするように設定されたグローバル エラー ハンドラが含まれています。
グローバル エラー ハンドラーが独自のエラー ハンドラーなしでフローからすべてのエラーをキャッチできるようにするには、グローバル エラー ハンドラーをどこで指定する必要がありますか?

  • A. pom.xml ファイル
  • B. 構成プロパティファイル
  • C. グローバル要素
  • D. どこにもありません。グローバル エラー ハンドラーが自動的に使用されます。

正解:C

解説:
Correct answer is A global element
Global error handlers are to be created in global element .
Quick note to remember here is Global error handlers come in to picture only when there are no error handlers specified as flow level.
Steps to create Global error handler
1) Click Global Elements to open Global Configuration Elements. Global Elements is located below the Studio canvas
2) In Global Configuration Elements, click Create to open the Choose Global Type dialog Graphical user interface, text, application, chat or text message Description automatically generated

3) From the dialog, select Global Configuration - Configuration, and then click OK to open the Configuration dialog.
Graphical user interface, text, application, email Description automatically generated

4) From the select Configuration dialog, select allErrorHandler for the Default Error Handler field, and click OK.


質問 # 52
展示を参照してください。

Mule イベントはオブジェクトの階層で構成されます。変数は階層内のどこに保存されますか?

  • A. Mule メッセージのペイロード
  • B. ミュールイベント
  • C. ミュールのメッセージ
  • D. Mule メッセージの属性

正解:B

解説:
Variables are stored under Mule event. Please refer to below image for the hierarchy .
Graphical user interface Description automatically generated


質問 # 53
展示品をご参照ください。

メイン フローには、子フローへのフロー参照が含まれています。
Web クライアントは、make クエリ パラメーターを含む GET リクエストをメイン フローの HTTP リスナーに送信します。
子フローでアクセスできる値は何ですか?

  • A. ペイロード
    モデルは
  • B. ペイロード
    クエリパラメータモデル変数を作成します
  • C. ペイロード
    クエリパラメータを作成する
  • D. ペイロード

正解:B


質問 # 54
展示品をご参照ください。Web クライアントが http://localhost:8081/fliqhts?destination=SFO にリクエストを送信すると、Web サービス コンシューマが WSC:BAD_REQUEST エラーをスローします。
このエラーを修正するための次のステップは何ですか?

  • A. Consume オペレーションに宛先クエリ パラメーターと等しいヘッダーを設定します。
  • B. Consume オペレーションのプロパティを宛先クエリ パラメータと等しく設定します。
  • C. 宛先クエリパラメータを含む Consume オペレーションの前に SOAP ペイロードを設定します。
  • D. 宛先クエリパラメータを含む Consume 操作の前に JSON ペイロードを設定します。

正解:C

解説:
As can be seen in error message , SOAP service findFlights expects the SOAP paylaod. This can be set using transform message processor which forms SOAP payload before the Consume operation that contains the destination query parameter


質問 # 55
展示品をご参照ください。

order.csv ファイルが読み取られ、データベース内の注文を検索するために処理されます。Mule アプリケーションは Any point Studio でデバッグされ、ブレークポイントで停止します。
このブレークポイントでデバッガに表示されるペイロードは何ですか?

  • A. 「なし」
  • B. データベースの応答
  • C. 0
  • D. CSVファイル全体

正解:C


質問 # 56
URL パラメータとして orderld によって特定の詳細を取得する有効な RAML はどれですか?
A)

B)

C)

D)

  • A. オプション B
  • B. オプション C
  • C. オプション D
  • D. オプション A

正解:D


質問 # 57
展示を参照してください。

POST /accounts エンドポイントではどのようなデータが予期されますか?

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

正解:C


質問 # 58
展示を参照してください。

Choice ルーターの 3 つの条件はすべて true です。どのようなログメッセージが書き込まれるのでしょうか?

  • A. ルート1
  • B. ルート2
  • C. ルート1、ルート2
  • D. ルート 1、ルート 2、デフォルト

正解:A


質問 # 59
フローは、2 つの異なるデータ ソースからのデータを結合して返す必要があります。これには、データベース SELECT 操作と、それに続く HTTP リクエスト操作が含まれています。
2 番目のリクエストのペイロードが最初のリクエストのペイロードを上書きしないように、両方のペイロードをキャプチャする方法は何ですか?

  • A. データベース SELECT 操作からのペイロードを変数に保存します。
  • B. データベース SELECT 操作をキャッシュ スコープ内に置きます。
  • C. 何もありません。前のペイロードは次のペイロードに結合されます。
  • D. データベース SELECT 操作をメッセージ エンリッチャーのスコープ内に配置します。

正解:A

解説:
Correct answer is Save the payload from the Database SELECT operation to a variable Response from HTTP request will override the payload and hence response of database SELECT can be lost. Best way to preserve is to assign payload of first operation to variable using TransformMessage.


質問 # 60
展示品をご参照ください。

2 つの Mule 設定ファイルは同じ Mule プロジェクトに属しています。各 HTTP リスナーは同じホスト文字列で構成され、ポート番号、パス、および操作の値が表示名に表示されます。
これらすべての HTTP リスナーをサポートするには、定義する必要があるグローバル要素の最小数はいくつですか?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

正解:D

解説:
In this case three configurations will be required each for port 8000, 6000 and 7000.
There would be three global elements defined for HTTP connections.
Each HTTP connection will have host and port. One example shown below with host as localhost and port
6000
Graphical user interface, application Description automatically generated

To use an HTTP listener, you need to declare a configuration with a corresponding connection. This declaration establishes the HTTP server that will listen to requests.
Additionally, you can configure a base path that applies to all listeners using the configuration.
* <http:listener-config name="HTTP_Listener_config" basePath="api/v1">
* <http:listener-connection host="0.0.0.0" port="8081" />
* </http:listener-config>
https://docs.mulesoft.com/http-connector/1.6/http-listener-ref#http-listener-configuration


質問 # 61
......

MCD-Level-1日本語認定ガイド問題と解答トレーニングにはPassTest:https://www.passtest.jp/MuleSoft/MCD-Level-1-JPN-shiken.html