Fast2test MCD-Level-1日本語リアル試験問題解答は更新された[2023年10月16日]
お手軽に合格させる 最新MuleSoft MCD-Level-1日本語問題集には226問があります
質問 # 34
サブフローと同期フローの違いは何ですか?
- A. 同期フローには独自のエラー処理がありませんが、サブフローには独自のエラー処理があります。
- B. 違いはありません
- C. サブフローには独自のエラー処理がありませんが、同期フローには独自のエラー処理があります。
- D. サブフローは同期、同期フローは非同期
正解:C
解説:
Correct answer is Subflow has no error handling implementation where as sync flow has.
Subflow
A subflow processes messages synchronously (relative to the flow that triggered its execution) and always inherits both the processing strategy and exception strategy employed by the triggering flow. While a subflow is running, processing on the triggering flow pauses, then resumes only after the subflow completes its processing and hands the message back to the triggering flow.
Synchronous Flow
A synchronous flow, like a subflow, processes messages synchronously (relative to the flow that triggered its execution). While a synchronous flow is running, processing on the triggering flow pauses, then resumes only after the synchronous flow completes its processing and hands the message back to the triggering flow. However, unlike a subflow, this type of flow does not inherit processing or exception strategies from the triggering flow.
This type of flow processes messages along a single thread, which is ideally suited to transactional processing
質問 # 35
展示を参照してください。文字列の入力配列はバッチ ジョブに渡されますが、フィルタリングや集計は行われません。Logger コンポーネントによってログに記録されるペイロードは何ですか?
- A. [ "Apptel2"、"Bananal2" ]
- B. 処理されたレコードの概要レポート
- C. [ "リンゴ"、"バナナ" ]
- D. [ "アプテル"、"バナナル"、2 ]
正解:B
質問 # 36
展示品をご参照ください。
プライベート フローの検証コンポーネントはエラーをスローします。メインフローのHTTPリスナーへのクライアントリクエストに対してどのような応答メッセージが返されるのでしょうか?
- A. 検証エラー
- B. 成功 - メインフロー
- C. エラー - プライベート フロー
- D. エラー - メインフロー
正解:D
解説:
Error in validation component will get processed by Processer level On Error Propagate block and then error will be rethrown which will get processed by flow level error handler which will set payload to "Error- main flow". Hence correct answer is Error - main flow
1) Request is received by HTTP listener
2) Try scope gets executed
3) The validator component in the Try scope creates an Error Object because the payload is not null.
4) The On Error Propagate handles the error. The payload is set to "Error - Try scope"
6) "Error - Try scope" is returned to the 'On Error Continue' block. Main flow execution stops. Payload is set to "Error - main flow"
7) "Error - main flow" is returned to the requestor in the body of the HTTP request. HTTP Status Code: 200
------------------------------------------------------------------------------------------------------------------------------------------ Reference Diagram though not exactly same, conditions are similar. They will help you answer any new question on error handling in real exam:
質問 # 37
展示品をご参照ください。


バッチ ジョブ スコープには、異なる受け入れ式を持つ 2 つのバッチ ステップ スコープが含まれています。
入力ペイロードはバッチ ジョブ スコープに渡されます。
ペイロード全体が Batch Job スコープによって処理された後、Logger コンポーネントによってどのようなメッセージが記録されましたか?
A)
B)

D)
- A. オプション D
- B. オプション A
- C. オプション B
- D. オプション C
正解:D
質問 # 38
API 実装が CloudHub にデプロイされたので、管理する必要があります。IT 部門は、新しい Mule アプリケーションが API プロキシとして機能するために追加の仮想コアを割り当てません。
現在の仮想コアの使用状況を維持しながら、Mule アプリケーションを API Manager で管理できるようにするには、次のステップは何でしょうか?
- A. 自動検出を使用して API Manager に登録するように API 実装を変更します。
- B. 同じ API 実装を Runtime Manager に登録して API Manager に接続します
- C. 同じ API 実装を VPC の背後にデプロイし、API Manager に接続するように VPC を構成します。
- D. Mule アプリケーションの JAR ファイルを API Manager の API インスタンスにアップロードします。
正解:A
解説:
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
質問 # 39
利用可能な RAML の最新仕様は何ですか?
- A. 0
- B. 1
- C. 0.8
- D. 1.2
正解:B
解説:
The current version of the RAML specification is 1.0
You can check RAML version in RAML definition by referring to first comment. See highlighted part in below image.
質問 # 40
展示品を参照してください。
Scatter-Gather の実行では、flow ルートは 10 秒後に完了し、flow2 ルートは 40 秒後に完了します。スキャッターギャザーが完了するまでに何秒かかりますか?
- A. 0
- B. 1
- C. 2
- D. 3
正解:B
解説:
Scatter-Gather sends the event to each routes concurrently. Hence both route in this example will start in parallel. So total time to complete processing is 40 seconds which is option 3
質問 # 41
展示品をご参照ください。クライアントは、HTTP リクエスト アクティビティを使用して ShippingFlow を呼び出す ClientRequestFlow にリクエストを送信します。
E2E テスト中に、クライアントがこのフローにリクエストを送信するたびに HTTP:METHOD_NOT_ALLOWED エラーがスローされることがわかりました。
この実装を正常に機能させるには、ClientRequestFlow でどの属性を変更しますか?


- A. 許可されたメソッド属性値を「POST」に変更します。
- B. プロトコル属性値を「HTTPS」に変更します。
- C. path 属性値を「/api/ship」に変更します
- D. メソッドの属性値を「*」に変更します。
正解:A
解説:
Correct answer is Change the method attributes value to "POST".
It can be fixed in either of the two ways as below.
1) Changing method attribute to POST in ClientRequestFlow
2) Setting allowedMethods as PUT in ShippingFlow (but doesn't fit as question mentions about changing ClientRequestFlow)
質問 # 42
展示品をご参照ください。Web クライアントが http://localhost:8081/fliqhts?destination=SFO にリクエストを送信すると、Web サービス コンシューマが WSC:BAD_REQUEST エラーをスローします。
このエラーを修正するための次のステップは何ですか?
- A. 宛先クエリパラメータを含む Consume 操作の前に JSON ペイロードを設定します。
- B. Consume オペレーションに宛先クエリ パラメーターと等しいヘッダーを設定します。
- C. Consume オペレーションのプロパティを宛先クエリ パラメータと等しく設定します。
- D. 宛先クエリパラメータを含む Consume オペレーションの前に SOAP ペイロードを設定します。
正解:D
解説:
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
質問 # 43
展示品をご参照ください。
メインフローの最後に切り替えられるペイロードと数量は何ですか?
- A. [[順序 1、順序 2、順序 3、順序 4]、14]
- B. [orderlorder2order3order4, 14]
- C. [[1,2,3,4], 14]
- D. [[1,2,3,4], 10]
正解:C
質問 # 44
SLA ベースのポリシーが API Manager で有効になっています。新しい SLA ポリシーを適用するように API プロキシを構成する次のステップは何ですか?
- A. 新しいプロパティ プレースホルダーを追加し、API プロキシを再デプロイします。
- B. API プロキシを再起動して API ポリシー キャッシュをクリアします
- C. 新しい環境変数を追加し、API プロキシを再起動します。
- D. 必要なヘッダーを RAML 仕様に追加し、新しい API プロキシを再デプロイします。
正解:D
解説:
Correct answer is Add required headers to RAML specification and redeploy new API proxy MuleSoft Doc Ref : https://docs.mulesoft.com/api-manager/2.x/tutorial-manage-an-api Steps are as below :
Add the Required RAML Snippet
SLA-based rate limiting requires adding a RAML or OAS snippet to your API. This procedure demonstrates adding a RAML snippet.
Specify the client ID and secret as query parameters.
Add a section called traits: at the RAML root level to define query parameters:
traits:
- client-id-required:
queryParameters:
client_id:
type: string
client_secret:
type: string
Add the client-id-required trait to every method that requires these query parameters:
/users:
get:
is: [client-id-required]
description: Gets a list of JSONPlaceholder users.
Step 2 : Add the SLA Tier in API Manager
Step 3 : Apply the policy and redeploy
質問 # 45
次のうち資産ではないものはどれですか?
- A. テンプレート
- B. 例
- C. 交換
- D. コネクタ
正解:C
解説:
Exchange is the odd man out here. Rest all are type of asset
質問 # 46
展示を参照してください。ロガーコンポーネントの出力は何ですか?
- A. オブジェクト
- B. マップ
- C. 配列
- D. 文字列
正解:C
解説:
Database always return rows as an array.
Array is the correct answer
質問 # 47
Mule プロジェクトには、formatString という名前の関数を定義する MyModule.dwl という DataWeave モジュールが含まれています。モジュールはプロジェクトの src/main/resources/modules フォルダーにあります。
DataWeave コードでワイルドカードを使用して MyModule をインポートし、モジュールの formatString 関数を呼び出す正しい方法は何ですか?
A)
B)
C)
D)
- A. オプション C
- B. オプション D
- C. オプション A
- D. オプション B
正解:B
質問 # 48
展示を参照してください。
HTTP リスナーのパス属性に URI パラメーターとして顧客 ID を追加するための正しい構文は何ですか?
- A. #[顧客ID]
- B. (顧客ID)
- C. {顧客 ID}
- D. ${顧客ID}
正解:C
質問 # 49
組織管理者はどのアプリケーションから SLA 層のアクセス要求を承認/取り消し/削除できますか
- A. API 交換
- B. APIゲートウェイ
- C. API マネージャー
- D. APIポータル
正解:C
解説:
Organization Administrators can approve/revoke/delete SLA tier access requests via API Manager only
質問 # 50
ペイロードを参照してください。

Set payload トランスフォーマーは、ペイロードをオブジェクトに設定します。ロガー コンポーネントのメッセージ属性は、文字列「Result #["INFO"++ payload]」で構成されます。このフローを実行すると、ロガーの出力は何になりますか?
- A. エラー: インライン式 # を ++ なしで評価しました
- B. 1. 1. 「次の引数を指定して関数 '++' を呼び出しました:
2.2.1: 文字列 (「情報」)
3. 3: オブジェクト ({student: {name: "Anay" as String {class: "java.lang.String"},age: 6 as Numbe...) - C. 結果情報{"学生":{"名前":"アナイ","年齢":6}}
- D. 結果INFOペイロード
正解:B
解説:
Correct answer is as below as concatenation operation works only with string and not with the objects. In this case payload is object.
"You called the function '++' with these arguments:
1: String ("INFO")
2: Object ({student: {name: "Anay" as String {class: "java.lang.String"},age
質問 # 51
バッチ ジョブ スコープには 5 つのバッチ ステップがあります。入力データが不完全であるため、イベント プロセッサは 2 番目のバッチ ステップでエラーをスローします。エラーがスローされた後のバッチ ジョブのデフォルトの動作は何ですか?
- A. エラーは無視されます
- B. バッチジョブのすべての処理が停止します。
- C. バッチは再試行されます
- D. イベント処理は次のバッチ ステップに進みます。
正解:B
解説:
In case of an error , batch job completes in flight steps and stops further processing.
MuleSoft Doc Ref : Handling Errors During Batch Job | MuleSoft Documentation The default is all processing will stop but we can change it by Max Failed Record field.
General -> Max Failed Records: Mule has three options for handling a record-level error: Finish processing, Continue processing and Continue processing until the batch job accumulates a maximum number of failed records. This behavior can be controlled by Max Failed Records.
The default value is Zero which corresponds to Finish processing.
The value -1, corresponds to Continue processing.
The value +ve integer, corresponds to Continue processing until the batch job accumulates a maximum number of failed records
質問 # 52
展示品をご参照ください。
メイン フローには、子フローへのフロー参照が含まれています。
Web クライアントは、make クエリ パラメーターを含む GET リクエストをメイン フローの HTTP リスナーに送信します。
子フローでアクセスできる値は何ですか?
- A. ペイロード
- B. ペイロード
モデルは - C. ペイロード
クエリパラメータモデル変数を作成します - D. ペイロード
クエリパラメータを作成する
正解:C
質問 # 53
ショッピング API には、部門ごとに店舗の詳細を検索するメソッドが含まれています。 特定の店舗の情報を取得するために、Web クライアントは、Department という名前のクエリ パラメーターと、storeld という名前の URI パラメーターを使用してリクエストを送信します。
特定のストア ID および部門名のデータを取得するための Web クライアントからのリクエストをサポートする有効な RAML スニペットは何ですか?
A)
B)
C)
D)
- A. オプション D
- B. オプション A
- C. オプション B
- D. オプション C
正解:D
質問 # 54
既存のリソースを完全に置き換えるために、RESTful Web サービスのどの HTTP メソッドが通常使用されますか?
- A. 置く
- B. パッチ
- C. ポスト
- D. 取得
正解:A
解説:
PUT replaces the original version of the resource, whereas the PATCH method supplies a set of instructions to modify the resource
質問 # 55
......
最新のMCD-Level-1日本語学習ガイド2023年最新の- 提供するのはテストエンジンとPDF:https://jp.fast2test.com/MCD-Level-1-JPN-premium-file.html