0
0
MLOpsdevops~20 mins

Regulatory compliance (GDPR, AI Act) in MLOps - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Regulatory Compliance Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding GDPR's Data Minimization Principle

Which of the following best describes the data minimization principle under GDPR when designing an MLOps pipeline?

ACollect and store only the data necessary for the specific ML task and no more.
BCollect as much data as possible to improve model accuracy, regardless of relevance.
CStore all raw data indefinitely to allow future model retraining without restrictions.
DShare collected data freely with third parties to enhance collaboration.
Attempts:
2 left
💡 Hint

Think about limiting data to what is strictly needed.

💻 Command Output
intermediate
2:00remaining
Output of Data Access Log Query for GDPR Audit

You run this command to query user data access logs in your MLOps system for a GDPR audit:

kubectl logs mlops-data-access-pod | grep 'user123'

What output would you expect if user123 accessed data on 2024-06-01 at 10:00?

MLOps
kubectl logs mlops-data-access-pod | grep 'user123'
AError: pod mlops-data-access-pod not found
B2024-06-01T10:00:00Z user123 accessed dataset customer_data.csv
CNo entries found for user123
D2024-06-01T10:00:00Z user456 accessed dataset customer_data.csv
Attempts:
2 left
💡 Hint

Look for the exact user ID and timestamp in the logs.

🔀 Workflow
advanced
3:00remaining
Correct Workflow to Ensure AI Act Compliance in Model Deployment

Which workflow sequence correctly ensures compliance with the AI Act when deploying a high-risk AI model?

A2,1,3,4
B1,3,2,4
C3,1,2,4
D1,2,3,4
Attempts:
2 left
💡 Hint

Think about the logical order from assessment to deployment.

Troubleshoot
advanced
2:00remaining
Troubleshooting Data Subject Access Request (DSAR) Automation Failure

Your automated DSAR system in the MLOps pipeline fails to retrieve all user data. Which cause is most likely?

AThe data indexing service is not updated with recent user data changes.
BThe Kubernetes cluster is running out of CPU resources.
CThe ML model accuracy is below 90%.
DThe AI Act requires manual DSAR processing only.
Attempts:
2 left
💡 Hint

Consider what affects data retrieval completeness.

Best Practice
expert
3:00remaining
Best Practice for Logging to Meet GDPR and AI Act Requirements

Which logging practice best meets both GDPR and AI Act compliance in an MLOps environment?

ALog full user data in plaintext for easy debugging and audit.
BLog only errors without user context to reduce storage costs.
CLog all user interactions with anonymized identifiers and secure logs with restricted access.
DDisable logging to avoid storing any personal data.
Attempts:
2 left
💡 Hint

Think about privacy and auditability together.