0
0
Software Engineeringknowledge~10 mins

Risk mitigation strategies in Software Engineering - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the primary goal of risk mitigation.

Software Engineering
The main purpose of risk mitigation is to [1] potential problems before they occur.
Drag options to blanks, or click blank then click option'
Adelay
Bignore
Creduce
Daccept
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'ignore' because it sounds easier, but ignoring risks can cause bigger problems.
Choosing 'accept' which is a different strategy, not mitigation.
2fill in blank
medium

Complete the code to name a common risk mitigation strategy.

Software Engineering
One common risk mitigation strategy is to [1] risks by transferring them to another party, like through insurance.
Drag options to blanks, or click blank then click option'
Atransfer
Bavoid
Caccept
Dignore
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'avoid' which means not doing the risky activity at all.
Choosing 'accept' which means keeping the risk without action.
3fill in blank
hard

Fix the error in the statement about risk mitigation.

Software Engineering
Risk mitigation means to [1] all risks completely, eliminating any chance of problems.
Drag options to blanks, or click blank then click option'
Aignore
Baccept
Celiminate
Dreduce
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'eliminate' which is unrealistic in most cases.
Choosing 'accept' which means no action is taken.
4fill in blank
hard

Fill both blanks to complete the risk mitigation plan.

Software Engineering
To mitigate risks, first [1] the risks, then [2] actions to manage them.
Drag options to blanks, or click blank then click option'
Aidentify
Bignore
Cimplement
Daccept
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 'ignore' which means not addressing risks.
Choosing 'accept' which means no mitigation action.
5fill in blank
hard

Fill all three blanks to complete the risk mitigation dictionary comprehension.

Software Engineering
mitigation_plan = { [1]: [2] for [3] in risks if risks[[3]] > 5 }
Drag options to blanks, or click blank then click option'
Arisk
Baction
Attempts:
3 left
💡 Hint
Common Mistakes
Using the same variable for key and value incorrectly.
Not filtering risks by their level.