0
0
Software Engineeringknowledge~10 mins

Risk analysis (probability and impact) 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 sentence to define risk in project management.

Software Engineering
Risk is the [1] of an event that may affect project objectives.
Drag options to blanks, or click blank then click option'
Acost
Bprobability
Cdeadline
Dteam
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing risk with cost or deadlines.
2fill in blank
medium

Complete the sentence to describe impact in risk analysis.

Software Engineering
Impact is the [1] or consequence of a risk event on project objectives.
Drag options to blanks, or click blank then click option'
Aprobability
Bfrequency
Cduration
Dseverity
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing impact with how often something happens.
3fill in blank
hard

Fix the error in the formula for risk exposure.

Software Engineering
Risk Exposure = Probability [1] Impact
Drag options to blanks, or click blank then click option'
A+
B-
C*
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition instead of multiplication.
4fill in blank
hard

Fill the blank to complete the risk priority formula.

Software Engineering
Risk Priority = Probability [1] Impact
Drag options to blanks, or click blank then click option'
A*
B+
C-
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using addition instead of multiplication.
5fill in blank
hard

Fill all three blanks to create a dictionary comprehension for risks with high impact.

Software Engineering
high_impact_risks = { [1]: [2] for [3] in risks if risks[[3]] > 7 }
Drag options to blanks, or click blank then click option'
Arisk
Brisks[risk]
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong variable names or missing the condition.