Cybersecurity - Compliance and Governance
Consider this simplified risk assessment code snippet:
What will be the value of
assets = {"Server": 100000, "Laptop": 2000}
threats = {"Hack": 0.1, "Theft": 0.05}
risk = {a: assets[a] * threats[t] for a in assets for t in threats}What will be the value of
risk["Server"] after running this code?