privacy
FDE interview questions tagged privacy, across every topic.
8 questions · 0 unlocked for you
Concepts behind "privacy"
The curriculum that explains the ideas these questions test.
Core
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.🛡️ AI Security, Privacy & GovernanceSign in
Core
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.🛡️ AI Security, Privacy & GovernanceSign in
Core
Federated LearningFederated learning trains one shared model across many devices or organizations without moving their raw data to a central server. Each participant trains locally on its own data and sends back only model updates, which a server averages into a new global model. It is the pattern an FDE reaches for when data legally or physically cannot leave its owner: hospitals, banks, and phone keyboards. The catch is that raw updates can still leak information, so real deployments layer on differential privacy or secure aggregation.🛡️ AI Security, Privacy & GovernanceSign in
