FDEInterviews logo

security

FDE interview questions tagged security, across every topic.

17 questions · 0 unlocked for you

Concepts behind "security"

The curriculum that explains the ideas these questions test.

Core
🛡️ AI Security, Privacy & GovernanceSign in
Prompt Injection and DefensePrompt injection is the attack where untrusted text smuggles instructions into a model's context and overrides the system's intent. It comes in two flavors: direct, where the user types the attack, and indirect, where a poisoned document or tool output the model later reads carries it. You cannot fully prevent it, so a competent FDE designs the system so that a successful injection cannot reach anything that matters.
Core
🛡️ AI Security, Privacy & GovernanceSign in
PII Handling and RedactionPersonal data leaks into AI systems through three doors: the prompt you send a model API, the logs you keep for debugging, and the traces you store for evaluation. Handling it means detecting and redacting personal data before it crosses any of those boundaries, then minimizing, encrypting, access-controlling, and expiring whatever you must keep. In regulated industries, logging a raw prompt is the single most common compliance failure.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Differential PrivacyDifferential privacy is a mathematical guarantee that the output of a computation barely changes whether or not any single person's record was included, so an attacker studying the output cannot confidently tell who was in the data. You buy this guarantee by adding calibrated random noise, and you pay for it in accuracy. The privacy budget epsilon sets the exchange rate; smaller epsilon means more noise and more privacy, and a value like epsilon = 8 is moderate, not strong.
Core
🛡️ AI Security, Privacy & GovernanceSign in
Audit Trails and TraceabilityAn audit trail is an immutable, queryable record that lets you reconstruct, months later, exactly who triggered a given AI output, with which model and prompt version, over which data. It is evidence for a regulator or a customer's security team, not a debugging log, and the difference is design: correlation IDs threaded end to end, tamper-evidence, and a retention policy. Regulated buyers will not sign without it.
Advanced
⚙️ System Design for AI in Production🔒 Premium
VPC and Air-Gapped DeploymentLarge enterprises will not let their data leave their security boundary, so you deploy your software inside the customer's private VPC, reach their data over PrivateLink instead of the public internet, authenticate through their SSO, and encrypt everything at rest and in transit. For air-gapped environments you ship self-hosted models too. This is core Forward Deployed Engineer work.
Advanced
🛡️ AI Security, Privacy & Governance🔒 Premium
Multi-Tenancy and Data IsolationMulti-tenancy is serving many customers from shared infrastructure while guaranteeing no tenant can ever see another's data. The isolation strategies run a spectrum from row-level filtering to fully separate databases, trading cost against blast radius. The non-negotiable rule for AI systems: tenant scope is enforced below the model, in code that filters queries and scopes credentials, never by instructing the model in a prompt. A single prompt-injected document is enough to break prompt-level isolation.