GENAI ENGINEER · AGENTIC AI · RAG · AZURE

Build, defend, and ship production GenAI systems

A free, offline-first interview prep portal: 80 focused GenAI scenarios, a technical field guide, system design, hands-on labs, project defence, and retained broad consulting and technology preparation.

Independent and representative: Aptivra is not affiliated with, endorsed by, or sponsored by Deloitte, any Big Four firm, or any recruiter. Every practice item is newly authored—not a recalled or leaked live-test question. Member firms, business units, roles, campuses, and hiring cycles can use different stages, vendors, timings, counts, and cutoffs. Your invitation and job description are the source of truth.
Recruitment safety: Deloitte India says it does not charge registration or recruitment fees. Treat payment requests and unofficial job promises as suspicious; use the official advisory linked under Sources.

Start with your exact role

“Analyst” is a level, not one syllabus. Choose the closest track; you can switch anytime.

0Questions Attempted
0Correct Answers
0Day Streak
0Bookmarks

Confidence & Weak Areas

Recent Mock Trend

DEFAULT CURRICULUM · RESEARCH CUT 24 JULY 2026

GenAI Engineer & Agentic AI Learning Hub

Move from mechanism → debugging → secure system design → measurable consulting value. Use the cards for rapid review, then practise the prompts, cases, labs, and project-defence drills.

Stable concept Vendor- and version-independent ideas. Product/version-sensitive Recheck current official documentation before an interview or implementation. Market signal Directional public evidence, never a promised interview pattern.

Technical field guide

Stable concept

1 · Python, APIs & SQL

Mutability, generators, typing, exceptions, async I/O, bounded concurrency, timeouts, cancellation, transient retries with jitter, idempotency, strict validation, dependency injection, tests, structured logs, trace IDs, joins, CTEs, windows, null semantics, indexes, and transactions.

Checkpoint: explain why retries need both a policy and an idempotency contract.

Stable concept

2 · ML / DL foundations

Split data by the unit that can leak; choose precision, recall, F1, PR curves, calibration, and thresholds by error cost. Know bias–variance, cross-entropy, perplexity limits, overfitting, distribution shift, and why a simple baseline makes incremental value measurable.

Checkpoint: defend a safety-classifier threshold under alert-capacity constraints.

Stable concept

3 · Transformers & tokens

Explain embeddings; scaled dot-product attention softmax(QKᵀ/√dₖ)V; heads; positional information; residual/normalization blocks; causal masks; encoder, decoder, and encoder–decoder tendencies; tokenizer-dependent cost; decoding; KV cache; and quadratic attention growth.

Checkpoint: draw training vs autoregressive inference without claiming temperature guarantees truth.

Stable concept

4 · Embeddings & retrieval

Cosine, dot product, Euclidean distance, normalization, compatible dimensions, exact kNN vs ANN/HNSW, metadata filters, BM25, hybrid retrieval, reciprocal-rank fusion, Recall@k, Precision@k, MRR, and nDCG. Re-embed and rebuild when changing embedding spaces.

Checkpoint: explain why exact identifiers often need lexical search.

Stable concept

5 · Production RAG

Acquire → parse/OCR → preserve layout → dedupe → chunk → enrich metadata → embed → index → validate → version. At query time: route/rewrite → retrieve → fuse → rerank → dedupe → pack → answer with citations → abstain. Diagnose retrieval, generation, citation, and freshness separately.

Checkpoint: select chunk size using labelled queries, quality, tokens, p95 latency, and cost—not folklore.

Stable concept

6 · Structured output & tools

Syntax, schema, semantics, authorization, and business validity are separate layers. The model proposes calls; application code allowlists, authorizes, validates, executes, correlates, limits, audits, and asks for approval. Treat tool results as untrusted data and make side effects idempotent.

Checkpoint: design a refund tool that remains safe after a timeout or injected tool result.

MCP details vary

7 · Agents, MCP & memory

Prefer deterministic workflows when steps are known. Agents need explicit state, permitted tools, budgets, failure transitions, checkpoints, approvals, and terminal conditions. Distinguish working, episodic, semantic, and procedural memory; design consent, provenance, TTL, deletion, tenant isolation, and conflict handling.

Checkpoint: MCP standardizes integration; it does not make a server or tool trustworthy.

Stable concept

8 · Evals & observability

Version representative, edge, adversarial, multilingual, and unanswerable cases. Gate ingestion, retrieval, reranking, groundedness, citations, refusal, tool success, safety, latency, and cost separately. Calibrate LLM judges against people; compare paired baselines; trace every component with privacy controls.

Checkpoint: define a release gate that catches a retrieval regression hidden by fluent answers.

Stable concept

9 · Security & privacy

Direct and indirect prompt injection, sensitive disclosure, supply-chain and poisoning risks, unsafe output handling, excessive agency, vector/embedding weaknesses, misinformation, and unbounded consumption require defence in depth. Enforce ACLs before context assembly; minimize and redact traces.

Checkpoint: delimiters and secret prompts are hints, not security boundaries.

Stable concept

10 · RAG vs fine-tuning

Use RAG for fresh/private knowledge, citations, updates, and deletion. Fine-tune behaviour, style, classification, formatting, or repeated tool patterns only after a prompt/retrieval baseline and held-out eval. PEFT can reduce training/storage cost; it does not turn weights into an auditable database.

Checkpoint: name the failure layer before choosing a remedy.

Product/version-sensitive

11 · Microsoft / Azure

Clarify current Microsoft Foundry vs classic resource/API generations. A defensible option combines Entra ID, managed identity/RBAC, Azure OpenAI/Foundry deployments, Azure AI Search hybrid retrieval, governed sources, justified compute, Key Vault, private networking, APIM, Application Insights, CI/CD eval gates, and rollback.

Checkpoint: verify names, routes, API/SDK versions, preview status, regions, quotas, and pricing that morning.

Stable concept

12 · Architecture & operations

Start with users, answerability, sensitivity, traffic, SLOs, action risk, quality, and budget. Use stateless APIs, external state, queues, backpressure, scoped caches, model routing, circuit breakers, rate limits, load tests, versioned artefacts, canaries, and observable rollback.

Checkpoint: allocate the latency budget across gateway, retrieval, reranking, model, and tools.

Project / consulting signal

13 · Defensible communication

Answer with claim → mechanism → measurement → trade-off → production control. For behavior, use Situation → your scope → actions and alternatives → measured result → learning. State baselines, failures, evidence, ownership boundaries, client impact, rollout, and responsible-AI controls.

Checkpoint: replace “we used RAG” with an evaluated decision and a quantified trade-off.

15 spoken interview drills

Use each as a 3–7 minute drill. The criteria guide coverage; they are not scripts or claims about an employer’s exact questions.

1 · Explain a transformer to a software engineer

Cover tokens/embeddings, Q/K/V attention and scaling, heads, positions, feed-forward/residual/normalization, causal masking, training vs inference, and long-context cost.

2 · Design chunking for annual reports, scanned contracts, and wikis

Compare layout/heading/table-aware parsing, parent–child chunks, overlap, metadata, OCR validation, and an empirical sweep.

3 · Correct context, hallucinated answer: diagnose

Separate retrieval, packing, conflicting/stale context, instruction, model, decoding, and citation failure; propose layer-specific evals.

4 · Keyword vs vector vs hybrid vs reranked retrieval

Use identifier, jargon, and paraphrase examples; discuss filters, RRF, first-stage recall, reranker latency, and measured trade-offs.

5 · RAG or fine-tuning?

Discuss fresh/private knowledge, behaviour adaptation, citations/deletion, data quality, PEFT, held-out evals, cost, and combined use.

6 · Build a safe refund agent

Define schemas, authorization, deterministic limits, idempotency, approval, audit, injection resistance, budgets, error states, and task-success evals.

7 · What is MCP—and what is it not?

Explain host/client/server, JSON-RPC, resources/prompts/tools, capability negotiation and consent; interoperability does not guarantee trust.

8 · Design memory for a customer assistant

Cover memory types, consent, provenance, scope, retrieval, conflict, TTL, deletion/export, tenant isolation, and summary loss.

9 · Evaluate an enterprise RAG release

Dataset, retrieval/answer/citation/refusal/safety metrics, human and calibrated LLM judges, paired baseline, CI gate, monitoring, and slices.

10 · Reduce LLM latency and cost

Instrument first; prune context, right-size models, parallelize I/O, stream, cache safely, batch offline work, bound agents, and protect quality.

11 · Describe a Microsoft/Azure production architecture

Clarify Foundry generation, identity/RBAC, Search, networking, governed sources, compute, Key Vault, APIM, monitoring, CI/CD, and data policy.

12 · Explain prompt injection to a client leader

Give direct/indirect examples, business impact, why secrecy/delimiters fail, and capability-based defence in depth.

13 · Walk through a difficult Python production bug

Show reproduction, traces, hypothesis, fix, tests, rollback, and prevention for async blocking, retry storms, mutable state, or fan-out.

14 · A project failed an evaluation

Use evidence-rich STAR: own scope, quantify failure, find root cause, communicate, change the system, and add a regression control.

15 · Turn a vague GenAI request into a consulting plan

Discovery, baseline, source readiness, use-case priority, risk, prototype, acceptance metrics, pilot, governance, ROI, change management, and exit criteria.

8 system-design cases

For every case: clarify requirements, then draw both the online request flow and the offline data/evaluation flow.

1 · Pan-India employee policy assistant

Brief: 50,000 employees; English/Hindi; SharePoint/PDF; HR ACLs; p95 < 4 s; citations. Cover: identity propagation, security trimming, layout/OCR, multilingual hybrid retrieval, freshness, reranking/citations, abstention, private Azure option, eval slices, SLO/cost, ACL-scoped caches.

2 · Confidential due-diligence analyst

Brief: compare deal-room files across entities/years. Cover: engagement isolation, file validation, table/layout extraction, entity/date metadata, decomposition, parent–child retrieval, page evidence, no cross-deal cache, retention/legal hold, human review, quantitative accuracy, bounded spend.

3 · Banking support agent with actions

Brief: answer products, fetch status, block cards—never transfer funds. Cover: deterministic router, RAG, scoped tools, reauthentication, confirmation, absence of transfer capability, idempotency, budgets, injected tool output, support paths, audit, policy evals.

4 · Developer copilot over repositories

Brief: explain code, find ownership, suggest patches, open a PR after approval. Cover: symbol-aware plus hybrid retrieval, commit metadata and ACLs, sandbox tests, supply-chain scan, diff review, approval, secret safety, untrusted integrations, acceptance metrics.

5 · Multilingual citizen-services assistant

Brief: English/Hindi/Marathi, low-bandwidth mobile, frequent policy change, accessible. Cover: authoritative sources, multilingual/hybrid search, concise streaming, citations/escalation, freshness SLO, safety, offline constraints, and evaluation by language/literacy/geography.

6 · 10,000-calls-per-minute support RAG

Brief: global, 99.9%, p95 < 2.5 s, strict unit economics. Cover: capacity, autoscaling, admission control, bounded retrieval/reranking, model escalation, scoped/versioned caches, streaming, circuit breakers, regional strategy, graceful degradation, load and cost tests.

7 · Contract-risk extraction pipeline

Brief: 40 clause types, strict schema, cited spans, lawyer review. Cover: queue, OCR/layout, constrained extraction, deterministic validation, calibrated evidence, exact spans, clause evals, review queue, lineage/reprocessing, residency/deletion, batch economics.

8 · Enterprise agent platform on Azure

Brief: shared guardrails, tools, and monitoring for many business units. Cover: control/data planes, Foundry-generation clarity, project boundaries, identity/RBAC, approved catalogue, tool gateway, policy as code, network isolation, eval/red-team gates, tracing, quotas, registry, kill switch, rollback.

10 portfolio labs

Each lab should produce a small repo/notebook, README, tests/eval data, measured results, and a two-minute explanation—without secrets or proprietary data.

  1. Python LLM gateway: async mock/provider client, typed schemas, timeout, semaphore, transient retry+jitter, request ID, structured logs, streaming, tests, load summary. Pass: no retries on validation/authorization errors; report p95 and failures.
  2. SQL observability dataset: requests, spans, retrievals, tools, feedback; daily volume, p50/p95, errors, token/cache cost, successful-task cost, failing prompt version, latest deduped trace. Pass: explicit null, duplicate, and timezone handling.
  3. Transformer mechanics notebook: scaled attention, causal mask, shapes, attention plot; compare English, Hindi, code, and numbers under two tokenizers. Pass: explain scaling, mask, complexity, and token differences.
  4. Embedding / ANN benchmark: public corpus, labelled queries, embedding choices, cosine vs normalized dot, exact vs ANN, metadata filters. Pass: Recall@k, MRR, latency, index size, failures, migration plan.
  5. Chunking bake-off: fixed, heading-aware, and parent–child chunkers with source/page/heading metadata over 50+ questions. Pass: choose via retrieval, answer, token, latency, and cost evidence.
  6. Hybrid RAG with citations: lexical+vector, RRF, optional reranking, dedupe, citation IDs, abstention, version fields. Pass: measure citation correctness separately from Recall@k.
  7. Secure tool-calling agent: read-only order lookup and side-effecting refund request, schemas, auth, rules, idempotency, confirmation, budgets, audit, injected attacks. Pass: deterministic controls resist both user and tool-output injection.
  8. Minimal MCP integration: local server with one resource and harmless tool; capability listing and consent. Pass: pin spec; defend malicious descriptions, oversized results, traversal, and exfiltration with scope/size/time limits and audit.
  9. Eval / observability harness: versioned normal, edge, multilingual, adversarial, and unanswerable JSONL; deterministic checks, retrieval metrics, rubric scoring, paired baseline, traces. Pass: a deliberate regression fails CI without exposing PII.
  10. Azure production blueprint: specify Foundry/Azure OpenAI, Search, Blob, managed identity/RBAC, Key Vault, networking, compute, monitoring, IaC, eval gate, cost/scaling, rollback. Pass: distinguish current vs classic paths and document region/data assumptions.

Rapid answer frameworks

System design · R-Q-A-D-E-S-C-O

Requirements/risks → Quality/SLO/cost → Architecture online+offline → Data/index/freshness/ACLs → Evals/gates → Security/privacy → Capacity/cache/cost/failures → Observability/rollout/rollback.

Debugging · LOCALIZE

Reproduce and define expected behaviour → inspect input-to-output lineage → isolate the first bad boundary → compare version/config/data → fix the owning layer → add a regression case and production signal.

Behavioral · Evidence-rich STAR

Situation (brief) → Task and your scope → Actions and alternatives → Result with metrics → Learning. Include stakeholder communication and what you would change.

Tailored project-defence studio

Autonomous Synapse notebook engineering agent

Architecture story: async Python orchestration coordinates task interpretation, notebook-cell generation, Synapse execution, Spark/Livy polling, log classification, selective cell patching, validation evidence, and Azure DevOps branch/PR automation—with human approval before merge.

  • Defend: why a bounded state machine beats open-ended retries; timeout, concurrency, checkpoint and idempotency design.
  • Failure drill: distinguish compilation, dependency, Spark-session, Livy transport, and runtime/data failures; patch only the owning cell and stop safely at budget.
  • Evidence: validation criteria, retry distribution, success-after-remediation, p95 completion, cost, escaped-failure rate, and rollback.

FastAPI enterprise RAG copilot

Architecture story: FastAPI gateway, governed retrieval with metadata/ACL filters and citations, role-aware tool calling, Redis-backed task/session state, explicit approval for production-changing actions, and correlated traces.

  • Defend: Redis TTL and recovery semantics, stateless API replicas, retrieval-vs-generation evals, tool authorization, output injection, and cache isolation.
  • Deployment: Docker image, Kubernetes probes/resources/autoscaling, Helm values/secrets, CI/CD eval gates, canary and rollback.
  • Trade-off drill: deterministic workflow vs dynamic agent; single vs multi-agent; hybrid retrieval/reranking vs latency and cost.

Ownership proof checklist

  • State the problem, users, risk, baseline, and your exact scope.
  • Draw online, offline/eval, and failure/recovery flows.
  • Name one rejected design and why.
  • Quantify only measured results; label proposed metrics as targets.
  • Explain approval boundaries, least privilege, audit, and incident rollback.
  • Never expose client secrets, private identifiers, proprietary prompts, or confidential data.

GenAI-first Role & Round Roadmap

For GenAI / Agentic AI roles: prepare across Python and SQL, ML/DL and transformers, retrieval/RAG, tools and bounded agents, evaluation/security, Azure architecture, coding, system design, project ownership, and consulting communication. A representative—not guaranteed—loop is screen → fundamentals → hands-on → architecture → project deep-dive → behavioral/client round.

There is no single universal “Deloitte paper.” Deloitte India and Deloitte US-India Offices (USI) are distinct organizations, and the sequence changes by practice, role, campus, and hiring campaign. Use this as a preparation map—not a promised process.

Check first: employer entity → practice → exact role/JD → invitation instructions. “Analyst” can mean software, data, consulting, audit, cyber, risk, or an internal function.
1

Application & Resume Review

Official Job-specific profile or campus placement route; recruiters and hiring managers review fit.

2

Role-Dependent Assessment

Observed Some fresher technology drives report aptitude, verbal/reasoning, CS MCQs, and coding. Other practices report business or domain assessments instead.

3

Technical / Domain Interview

Projects and resume depth plus role fundamentals—coding/SQL/OOP for software, Excel/Python/statistics for data, accounting/controls for audit or risk, and platform depth for experienced hires.

4

Case, Scenario, GD or JAM (when relevant)

Official guidance Case/scenario interviews assess clear thinking, assumptions, analysis, recommendations, and impact—not one memorized “right answer.”

5

Behavioral / Manager Conversation

Resume ownership, communication, leadership, teamwork, ambiguity, priorities, client judgment, and genuine STAR examples. This may be combined with another interview.

6

Additional Leadership / HR Step (possible)

Some campaigns add a manager, Director/Partner, or HR round; others conclude after a combined interview. Offer and onboarding follow only after the actual process is complete.

Recent pattern snapshots

2025 candidate reports

USI Technology Analyst

Frequently reported: timed aptitude/verbal/reasoning + CS/technical MCQs + two coding problems, then a technical or combined interview; a separate manager/HR round appears in some—not all—drives.

Prioritize: arrays/strings, SQL, OOP, DBMS/OS/network basics, projects, and behavioral scenarios.

Practice-specific report

Deloitte India Consulting / Analytics

Some campus tracks report an assessment, business discussion or GD, then senior interviews focused on projects, data/GenAI, commercial thinking, and scenarios rather than a coding-heavy funnel.

Prioritize: structured communication, business application, project ownership, cases, and senior-panel maturity.

JD-led

Experienced Hire

Expect deeper probing of end-to-end delivery, design choices, troubleshooting, stakeholder workshops, testing, risk/quality, and measurable impact. Generic puzzle preparation has lower return.

Prioritize: turn every important JD bullet into one defensible project story.

Prepare by role family

Technology / Software

Coding aloud, arrays/strings, OOP, DBMS, OS, networks, SQL, project architecture, tests, and edge cases.

Data / Analytics / AI

SQL, Excel, Python/pandas, statistics, model evaluation, cleaning, dashboards, and business interpretation.

Consulting / Advisory

Clarify, structure, analyse, synthesise, recommend, and state risks and next steps; add commercial awareness.

Risk / Cyber / Controls

Risk-control mapping, security basics, named platforms, implementation lifecycle, troubleshooting, and documentation.

Audit / Assurance

Role-relevant accounting and audit fundamentals, evidence, controls, ethics, scenarios, and communication.

Practice Questions

Mock Test Engine

Configure Your Test

Representative practice only: this mock does not reproduce a live paper or predict selection. Your invitation controls sections, timing, platform, allowed tools, and cutoffs.

Flashcards

Click to start
0/0

Prep Tools

STAR Story Builder

Structure behavioral answers using Situation-Task-Action-Result.

Saved Stories

Case Interview Frameworks

Profitability

Revenue (Price × Volume) vs Costs (Fixed + Variable). Segment by product/region/channel.

Market Entry

Market size → Growth → Competition → Customer segments → Capabilities → Entry mode → Financials.

Market Sizing

Top-down (TAM→SAM→SOM) or Bottom-up (units × price). State assumptions explicitly.

Pricing

Cost-plus, value-based, competitive benchmarking. Consider elasticity and willingness-to-pay.

M&A

Strategic rationale → Standalone value → Synergies → Risks → Valuation → Integration.

Operations / Process

Bottleneck analysis, capacity planning, lean/six-sigma principles, automation ROI.

Tips

  • Always clarify the objective before structuring.
  • Use MECE (Mutually Exclusive, Collectively Exhaustive) buckets.
  • Drive toward a recommendation with supporting data points.
  • Practice mental math — round aggressively.

Code Practice

Write solutions below. Code runs locally in a disposable worker with a two-second limit; output appears in the console area. Do not paste untrusted code.


    

Common Patterns

  • Two pointers, sliding window
  • HashMap frequency count
  • BFS/DFS traversal
  • Dynamic programming (memoization)
  • Sorting + binary search

SQL Practice

Draft a query, then compare it with a reference solution. SQL dialects vary; no query is sent anywhere.

Key Concepts

  • JOINs (INNER, LEFT, RIGHT, FULL, CROSS)
  • Window functions (ROW_NUMBER, RANK, LAG, LEAD)
  • CTEs and subqueries
  • GROUP BY + HAVING
  • CASE WHEN expressions
  • Index optimization basics

Resume Checklist

  • One page for <5 years experience
  • Quantify impact: "Improved X by Y% resulting in Z"
  • Tailor to job description keywords
  • Education, projects, skills, experience (reverse-chronological)
  • No photos, no personal info beyond contact
  • Action verbs: Led, Designed, Implemented, Optimized, Delivered
  • Proofread — zero typos
  • PDF format, clean ATS-friendly template

Group Discussion & JAM

GD Tips

  • Initiate or summarize — both score points.
  • Speak 3-4 times; quality > quantity.
  • Acknowledge others: "Building on what X said…"
  • Stay on topic; bring back derailed discussions.
  • Use data/examples to support arguments.

JAM (Just-A-Minute) Tips

  • Structure: Opening hook → 2-3 points → Conclusion.
  • Avoid filler words; pause instead.
  • Practice: pick random topics, speak for 60s recorded.

Common GD Topics

  • AI replacing jobs in India
  • Work from home vs office
  • Startup culture vs corporate stability
  • Digital India — successes and gaps
  • Climate change — economic vs environmental priorities

Study Plans

Start with the dedicated GenAI plan; every GenAI day ends with spoken recall and an error log. Broad assessment plans remain available.

Sources & Disclaimer

Important: Aptivra is an independent, free educational resource. It is NOT affiliated with Deloitte, any Big-4 firm, or any recruitment agency. No proprietary or confidential material is used.

Recruitment processes change frequently and can differ by business unit, campus, geography, role, and candidate. Aptivra does not claim that any roadmap or test format is current or universal. Verify the role description and official candidate communication on the day you apply.

Research basis (checked 24 July 2026)

Official sources define guidance and organizational context. Observed sources are individual candidate reports—useful for patterns, never guarantees.

Official Deloitte guidance

Recent candidate pattern reports (anecdotal)

Core GenAI and official technical references

Stable concept principles still require domain evaluation. Product/version-sensitive links must be rechecked for current API versions, names, limits, preview/GA status, regions, and pricing.

GenAI role-market signals

Freshness checklist

  1. Save the target employer’s exact job-description wording.
  2. Verify Microsoft Foundry new vs classic resource, endpoint, SDK, deployment name, and API route.
  3. Verify Azure AI Search feature status, region, quotas, and pricing.
  4. Verify model context, tokenizer, structured-output/tool support, and price for the actual deployment.
  5. Verify MCP’s latest dated specification and transport/authorization requirements.

Content Accuracy Caveat

All 208 questions are representative original compositions, including 80 GenAI scenarios numbered 129–208. No proprietary, recalled, or leaked live-test material is reproduced. Aptivra makes no claim about exact interview questions, rounds, timing, or selection patterns. Difficulty and coverage are approximations; the current job description, invitation, and official documentation remain authoritative.

Keyboard Shortcuts

Alt+TToggle dark/light theme
Alt+DDashboard
Alt+PPractice
Alt+MMock Test
Alt+FFlashcards
?Show shortcuts
EscClose dialog
←/→Navigate flashcards/questions
SpaceFlip flashcard