NVIDIA NCP-AAI Agent Architecture and Orchestration

Use for agent-vs-workflow design, multi-agent coordination, orchestration patterns, delegation, communication, and workflow topology choices.

試験Exams
NCP-AAI
問題数Questions
11
コメント数Comments
1
1 11

表示中 11 / 11 問

1. NCP-AAI トピック 1 問題 31. NCP-AAI Topic 1 Question 3

問題Question

エージェント開発のコンテキストでは、自律エージェントは、複雑な企業タスクに適用される場合、事前定義されたワークフローとどのように異なりますか?

  • A. エージェントは固定入出力マッピングの下で​​実行速度を最適化する一方、ワークフローは適応推論とメモリ メカニズムを通じて目標の調整を優先します。
  • B. ワークフローは、条件分岐を備えた決定論的なタスクの順序付けを提供し、エージェントは目標、コンテキスト、および環境のフィードバックに基づいて決定を動的に適応させます。
  • C. ワークフローはプロセスの並列性と分散調整を重視し、エージェントはシリアル化と個別の問題解決を重視します。

In the context of agent development, how does an autonomous agent differ from a predefined workflow when applied to complex enterprise tasks?

  • A. Agents optimize for execution speed under fixed input-output mappings, while workflows prioritize goal alignment through adaptive reasoning and memory mechanisms.
  • B. Workflows provide deterministic task sequencing with conditional branching, while agents adapt decisions dynamically based on goals, context, and environment feedback.
  • C. Workflows emphasize parallelism and distributed coordination of processes, while agents emphasize serialization and isolated problem solving.

2. NCP-AAI トピック 1 問題 42. NCP-AAI Topic 1 Question 4

問題Question

世界的な金融機関のリード AI アーキテクトは、エージェント AI フレームワークを使用したマルチエージェント不正検出システムを設計しています。このシステムはリアルタイムで動作する必要があり、異なるエージェントが協力してアカウント全体のトランザクション パターンを監視および分析し、コンテキスト情報を長期にわたって保持および共有し、必要に応じて不審な行動を人間の不正分析アナリストにエスカレーションする必要があります。
動的に進化する脅威環境において、インテリジェントな専門化、共有メモリ、エージェント間の調整を可能にするアーキテクチャ アプローチはどれですか?

  • A. 個々のエージェントが共有メモリと構造化メッセージングを使用して非同期的に連携する、モジュール式のマルチエージェント システムを設計します。
  • B. 共有メモリと構造化メッセージングを使用して、個々のエージェントが同期的に連携するマルチエージェント システムを設計します。
  • C. すべてのトランザクションを静的な不正指標と照合してチェックし、しきい値を超えた場合にアラートを送信する、一元化されたルールベースのサービスを設計します。
  • D. 待ち時間とモデルの複雑さを軽減するために、エージェント間通信を行わずに、各エージェントが分離されたデータ スライスで独立して動作するエージェント ワークフローを設計します。
  • E. モジュール式の役割や複数のエージェントの調整を行わずに、単一ループ内ですべての不正検出タスクを処理するモノリシック LLM ベースのエージェントを設計します。

A Lead AI Architect at a global financial institution is designing a multi-agent fraud detection system using an agentic AI framework. The system must operate in real time, with distinct agents working collaboratively to monitor and analyze transactional patterns across accounts, retain and share contextual information over time, and escalate suspicious behaviors to a human fraud analyst when needed.
Which architectural approach enables intelligent specialization, shared memory, and inter-agent coordination in a dynamic and evolving threat environment?

  • A. Design a modular multi-agent system where individual agents collaborate asynchronously using shared memory and structured messaging.
  • B. Design a multi-agent system where individual agents collaborate synchronously using shared memory and structured messaging.
  • C. Design a centralized rule-based service that checks all transactions against static fraud indicators and sends alerts when thresholds are exceeded.
  • D. Design an agentic workflow where each agent acts independently on isolated data slices with no inter-agent communication to reduce latency and model complexity.
  • E. Design monolithic LLM-based agents that handle all fraud detection tasks within a single loop, without modular roles or multi-agent coordination.

3. NCP-AAI トピック 1 問題 53. NCP-AAI Topic 1 Question 5

問題Question

逐次タスク実行と並列タスク実行の両方を含む複雑なエージェント ワークフローを設計する場合、最も高い柔軟性を提供するオーケストレーション パターンはどれですか?

  • A. 条件分岐を組み込んだグラフベースのワークフロー オーケストレーション
  • B. 固定タスクシーケンスによる線形パイプラインオーケストレーション
  • C. タスクを事後的に、直列または並列でトリガーするイベント駆動型のオーケストレーション

When designing complex agentic workflows that include both sequential and parallel task execution, which orchestration pattern offers the greatest flexibility?

  • A. Graph-based workflow orchestration incorporating conditional branches
  • B. Linear pipeline orchestration with a fixed task sequence
  • C. Event-driven orchestration that triggers tasks reactively, in series or in parallel

4. NCP-AAI トピック 1 問題 64. NCP-AAI Topic 1 Question 6

問題Question

複数の NVIDIA GPU ノードにわたって実行される分散エージェント システムのエージェント間通信を実装する場合、どのメッセージ ルーティング パターンが信頼性とパフォーマンスの最適なバランスを提供しますか?

  • A. ポーリングによるデータベースベースのメッセージキューイング
  • B. すべてのエージェント ペア間の直接 TCP 接続
  • C. 分散ブローカークラスターによるイベント駆動型のメッセージルーティング
  • D. トピックベースのルーティングを備えた集中型メッセージ ブローカー

When implementing inter-agent communication for a distributed agentic system running across multiple NVIDIA GPU nodes, which message routing pattern provides the best balance of reliability and performance?

  • A. Database-based message queuing with polling
  • B. Direct TCP connections between all agent pairs
  • C. Event-driven message routing with distributed broker clusters
  • D. Centralized message broker with topic-based routing

5. NCP-AAI トピック 1 問題 75. NCP-AAI Topic 1 Question 7

問題Question

外部データ アクセスと特殊なタスク委任の両方を必要とする複雑なエージェント ワークフローの実装に最も適した 2 つのオーケストレーション方法はどれですか? (2つお選びください。)

  • A. 専門のエキスパート システムの委任によるエージェント オーケストレーション
  • B. 状態管理を実現するためのプロンプトチェーン
  • C. 自動化を行わない手動のワークフロー調整
  • D. 外部データの取得ベースのオーケストレーション
  • E. 事前定義された経路を使用した静的ルールベースのルーティング

Which two orchestration methods are MOST suitable for implementing complex agentic workflows that require both external data access and specialized task delegation? (Choose two.)

  • A. Agentic orchestration with specialized expert system delegation
  • B. Prompt chaining to accomplish state management
  • C. Manual workflow coordination without automation
  • D. Retrieval-based orchestration for external data
  • E. Static rule-based routing with predefined pathways

6. NCP-AAI トピック 1 問題 86. NCP-AAI Topic 1 Question 8

問題Question

分散製造ワークフローを管理するマルチエージェント システムにおける調整の失敗を評価する場合、状態管理と計画の同期の問題を特定するのに最も適した分析アプローチはどれですか?

  • A. エージェントの出力を個別に監視して、ローカルの正確性を確認し、特定のワークフロー ステップの結果を検査します。
  • B. エージェント全体に分散状態トレースを展開し、遷移タイミングを分析し、通信オーバーヘッドを調査し、同期精度を検証します。
  • C. 設計レビュー中に同期方法を評価し、シミュレーションを使用して代表的なワークフロー シナリオ間の調整を評価します。
  • D. ワークフローのスループットとタスクの完了を追跡して、パフォーマンスの傾向を測定し、ワークフローの結果を強調します。

When evaluating coordination failures in a multi-agent system managing distributed manufacturing workflows, which analysis approach best identifies state management and planning synchronization issues?

  • A. Monitor agent outputs individually to confirm local correctness and examine results of specific workflow steps.
  • B. Deploy distributed state tracing across agents, analyze transition timing, study communication overhead, and verify synchronization accuracy.
  • C. Assess synchronization methods during design reviews and use simulations to evaluate coordination across representative workflow scenarios.
  • D. Track workflow throughput and task completions to measure performance trends and highlight workflow outcomes.

7. NCP-AAI トピック 1 問題 97. NCP-AAI Topic 1 Question 9

問題Question

あなたは、画像やテキストも含む医療文書を要約するための AI エージェントを設計しています。重要な情報を抽出し、日付を認識する必要があります。
エージェントが複数の入出力形式で適切に動作することを保証するために最も重要な機能はどれですか?

  • A. 幻覚コンテンツをフィルタリングするためのガードレールの使用
  • B. API 障害時の堅牢性を確保するためのロジック実装の再試行
  • C. 推論の正確さを促す思考の連鎖
  • D. テキスト入力とビジョン入力の両方を処理するためのマルチモーダル モデルの統合

You are designing an AI agent for summarizing medical documents that include images and text as well. It must extract key information and recognize dates.
Which feature is most critical for ensuring the agent performs well across multiple input and output formats?

  • A. Use of guardrails to filter out hallucinated content
  • B. Retry logic implementation to ensure robustness during API failures
  • C. Chain-of-thought prompting for reasoning accuracy
  • D. Multi-modal model integration to handle both text and vision inputs

8. NCP-AAI トピック 1 問題 108. NCP-AAI Topic 1 Question 10

問題Question

エージェントが異なる専門分野 (リサーチ アナリスト、コンテンツ ライター、品質検証者) を持つマルチエージェント システムを実装する場合、最も効果的な 2 つの調整パターンはどれですか?

  • A. 乗務員ベースの構造化された引き継ぎによる逐次的なパイプライン調整
  • B. コンセンサスメカニズムによるピアツーピア調整
  • C. 負荷分散によるランダムなタスク分散
  • D. 乗組員ベースのタスク委任による階層的な調整

Which two coordination patterns are MOST effective for implementing a multi-agent system where agents have different specializations (Research Analyst, Content Writer, Quality Validator)?

  • A. Sequential pipeline coordination with crew-based structured handoffs
  • B. Peer-to-peer coordination with consensus mechanisms
  • C. Random task distribution with load balancing
  • D. Hierarchical coordination with crew-based task delegation

9. NCP-AAI トピック 1 問題 119. NCP-AAI Topic 1 Question 11

問題Question

公共電力会社の上級 AI アーキテクトは、停電検出、負荷分散、エスカレーション処理などのグリッド運用を自動化する AI システムを設計しています。このシステムには複数のインテリジェント エージェントが含まれており、これらのエージェントは同時に動作し、変化するデータにリアルタイムで応答し、複数の対話ステップを経て展開するタスクで協力する必要があります。アーキテクトは、保守性を犠牲にすることなく調整、柔軟なタスク委任、応答性をサポートする設計パターンを選択する必要があります。
このシナリオにはどの設計アプローチが最も適していますか?

  • A. 通信とタスク ルーティングを処理する共有インターフェイス層によって管理される分離された実行ユニットを備えたエージェント サービス アーキテクチャを使用します。
  • B. タスクフローを事前定義されたパスにマップするルール主導の制御構造を構築し、既知の動作条件下で高速かつ効率的に実行します。
  • C. システムは、エージェント機能の段階的なシーケンスとして設計され、各段階でデータが処理され、固定された機能チェーン内の次の段階にデータが渡されます。
  • D. 共有タスク プランナーを通じて調整される役割ベースのエージェント モデルを採用し、エージェントの決定は一元化されたポリシー ロジックとランタイム コンテキスト信号によって通知されます。

A senior AI architect at a public electricity utility is designing an AI system to automate grid operations such as outage detection, load balancing, and escalation handling. The system involves multiple intelligent agents that must operate concurrently, respond to changing data in real time, and collaborate on tasks that evolve over multiple interaction steps. The architect must choose a design pattern that supports coordination, flexible task delegation, and responsiveness without sacrificing maintainability.
Which design approach is most appropriate for this scenario?

  • A. Use an agent service architecture with decoupled execution units managed by a shared interface layer that handles communication and task routing.
  • B. Build a rule-driven control structure that maps task flows to predefined paths for fast and efficient execution under known operating conditions.
  • C. Design the system as a stepwise sequence of agent functions, where each stage processes and passes data to the next in a fixed functional chain.
  • D. Adopt a role-based agent model coordinated through a shared task planner, where agent decisions are informed by centralized policy logic and runtime context signals.

10. NCP-AAI トピック 1 問題 1210. NCP-AAI Topic 1 Question 12

問題Question

AI エンジニアは、NVIDIA エージェント フレームワークで構築されたパフォーマンスの低いマルチエージェント ワークフローを評価しています。
エージェントの調整とコミュニケーション パターンにおける最適化の機会を最も効果的に特定する分析アプローチはどれですか?

  • A. エージェント間の通信コスト、調整オーバーヘッド、タスク割り当てバランスを考慮した分析を使用して、ワークフローの完了時間を監視します。
  • B. ワークフローレベルの効率、調整コスト、システム全体のスループットを分析することなく、個々のエージェントの精度のみに焦点を当てます。
  • C. エージェントを個別に評価し、ツールキットがインタラクション効果、コミュニケーション パターン、調整による新たな行動を自動的に推測できるようにします。
  • D. 可観測性機能を使用してエージェントの対話パターンを追跡し、通信オーバーヘッドを測定し、冗長な操作を特定し、タスク分散効率を分析します。

An AI engineer is evaluating an underperforming multi-agent workflow built with NVIDIA agentic frameworks.
Which analysis approach most effectively identifies optimization opportunities in agent coordination and communication patterns?

  • A. Monitor workflow completion times using analysis that subsumes inter-agent communication costs, coordination overhead, and task allocation balance.
  • B. Focus exclusively on individual agent accuracy without analyzing workflow-level efficiency, coordination costs, or overall system throughput.
  • C. Evaluate agents individually, allowing the toolkit to automatically infer interaction effects, communication patterns, and emergent behaviors from coordination.
  • D. Trace agent interaction patterns using observability features, measure communication overhead, identify redundant operations, and analyze task distribution efficiency.

11. NCP-AAI トピック 7 問題 8011. NCP-AAI Topic 7 Question 80

問題Question

NVIDIA Agent Intelligence Toolkit を使用して、エージェント ワークフローのパフォーマンスを最適化します。
あなたの組織は、最適なパフォーマンスを維持しながら、さまざまなフレームワークで構築されたエージェントを接続する必要がある、複雑なマルチエージェント システムを構築しています。
NVIDIA Agent Intelligence Toolkit の主な機能のうち、この実装に最も役立つものはどれですか?

  • A. このツールキットは単純なエージェント間の通信に限定されていますが、複雑なマルチエージェント ワークフローを調整することはできません。
  • B. このツールキットは、フレームワークに依存しない統合を提供し、コンポーネントの再利用性を確保します。
  • C. このツールキットは NVIDIA フレームワーク エージェント専用に設計されており、他のフレームワークと統合することはできません。
  • D. このツールキットは主にエージェントの開発に焦点を当てていますが、評価機能はありません。

Optimize agentic workflow performance with the NVIDIA Agent Intelligence Toolkit.
Your organization is building a complex multi-agent system that needs to connect agents built on different frameworks while maintaining optimal performance.
Which key features of the NVIDIA Agent Intelligence Toolkit would be MOST beneficial for this implementation?

  • A. The toolkit is limited to simple agent-to-agent communication but cannot orchestrate complex multi-agent workflows.
  • B. The toolkit provides framework-agnostic integration ensuring reusability of components.
  • C. The toolkit is designed exclusively for NVIDIA framework agents and cannot integrate with other frameworks.
  • D. The toolkit focuses primarily on agent development but lacks evaluation capabilities.