Cybersecurity - Compliance and Governance
Consider this code snippet representing a data request under GDPR:
What will be the output?
request = {"user_id": 123, "consent": True, "data": "email"}
if request["consent"]:
print("Data can be processed")
else:
print("Consent required")What will be the output?
