3.1 Describe Design Considerations for Applications That Use Foundation Models (FMs)

Targeted AIF-C01 practice for this exam objective, with an explanation for every answer option.

Practise this domain free

Certification
AIF-C01
Domain
Applications of Foundation Models
Questions
6

Practice AIF-C01 3.1 Describe Design Considerations for Applications That Use Foundation Models (FMs) questions with exam-style scenarios, detailed explanations, and option-by-option rationale for this topic area.

Example question from this objective

Each option is explained, so the reasoning behind the distractors is part of the answer.

A RAG application has higher latency than direct foundation-model calls. The likely cause is:

  • RAG systems are single-threaded by architecture.
  • RAG workloads can run only during off-peak windows.
  • Retrieval adds embedding and vector-query time before generation.
  • RAG always requires larger foundation models than direct calls.

RAG systems are single-threaded by architecture. — RAG isn't single-threaded.

RAG workloads can run only during off-peak windows. — RAG runs 24/7.

Retrieval adds embedding and vector-query time before generation. — Correct. Retrieval adds 50-500ms typically. Worth it for grounding, but it's a real cost. Optimize via caching, smaller embeddings, or pre-computed retrieval.

RAG always requires larger foundation models than direct calls. — Model size is independent of RAG.

Continue preparing