AppliedAIPrep logoAppliedAI/Prep

governance

Applied AI interview questions tagged governance, across every topic.

29 questions · 4 unlocked for you

Concepts behind "governance"

The curriculum that explains the ideas these questions test.

Foundational
🛡️ AI Security, Privacy & Governance
Prompt InjectionPrompt injection is the top security risk for LLM apps: malicious instructions override the model's intended behavior. Direct injection comes from the user; indirect injection hides instructions in content the model retrieves or browses (a web page, a document, an email), so a third party attacks. It is acute for RAG and agents because they ingest untrusted content and agents can take actions. The core defense is to treat all retrieved/tool content as untrusted data, never instructions, plus least privilege and human approval for irreversible actions.
Foundational
🛡️ AI Security, Privacy & Governance
PII HandlingPersonal data in prompts, logs, and training sets is a privacy and compliance risk (GDPR, HIPAA), so you must detect and protect it. Detection is layered (regex for structured PII like emails/SSNs, ML/NER for names and addresses) and imperfect, so it is one layer alongside the strongest control: data minimization, do not collect or log what you do not need. Applied-AI interviews probe it because LLM logs and training data are a major PII surface, and a leak is a legal and reputational disaster.
Foundational
🛡️ AI Security, Privacy & Governance
Audit TrailsAn audit trail logs enough to reconstruct and explain any AI decision: the input, retrieved context, model and prompt version, output, and who/when, plus human overrides and guardrail events. It is the backbone of debugging, incident response, compliance (the EU AI Act and regulated domains require traceability), and accountability. The tension is privacy: logs are a sensitive surface, so you redact PII, control access, and set retention. Applied-AI interviews probe it because 'why did the model decide that?' must be answerable in serious deployments.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Differential PrivacyDifferential privacy adds calibrated noise to data, queries, or training so the output is provably insensitive to any single individual's record, bounding what can be learned about any one person. In ML, DP-SGD clips and noises gradients to limit memorization and defend against membership-inference attacks. The cost is a privacy-utility trade-off controlled by a parameter epsilon. Applied-AI interviews probe it because it is the rigorous, mathematically-backed privacy tool, and because models can otherwise memorize and leak training data.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Multi-Tenancy and IsolationWhen one AI system serves many customers (tenants), the cardinal rule is that no tenant can see another's data, ever. In RAG this means every retrieval is filtered by tenant so the vector search cannot return another tenant's documents; it extends to caches, logs, fine-tunes, and rate limits. The dangerous failure is a cross-tenant leak. Applied-AI interviews probe it because enterprise deployments are multi-tenant, and a leak between customers is a catastrophic, trust-destroying breach.
Core
🛡️ AI Security, Privacy & GovernanceSign in
AI Governance FrameworksAI governance is the program that makes deployments safe, fair, and compliant: risk assessment, documentation (model cards, datasheets), human oversight, monitoring, and incident response, structured by frameworks like the NIST AI Risk Management Framework and laws like the EU AI Act (which tiers obligations by risk). For high-risk systems, the practices this domain already recommends become legally mandatory. Applied-AI interviews probe it because enterprise and regulated deployments require it, and it turns ad-hoc safety into an auditable process.