Debugging Flashcards
How big the impact of a bug is to the business.
Severity
Based on how fast a bug should be fixed.
Priority
(T/F) An application built with the highest quality will not have bugs.
False
What details should a bug report include?
a) Actual result
b) Name of the bug
c) Expected result
d) All of the above
D
Severity is based on ___.
a) how visible a bug is
b) how much effort is required to fix a bug
c) how much of an impact the bug has on the business
d) how fast a bug should be fixed
C
(T/F) After triaging bugs its good practice to share the priority of bugs with the team.
True
When should a team focus on fixing bugs?
a) Every day
b) Each development sprint
c) at the end of a quarter
B
(T/F) Mob testing sessions are dedicated times to fix bugs.
False
Which information should be included when reporting a bug?
a) Code line number
b) Solution suggestions
c) Design feedback
d) Reproduction steps
D
Which software is used to report and manage bugs?
a) Outlook
b) XCode
c) Visual Studio
d) Jira
D
What you do after you have found a bug.
Debugging
The process of ___ proceeds from some general theories or premises, using the processes of elimination and refinement, to arrive at a conclusion.
deduction
Which debugging process pinpoints a section of code that has a bug?
a) Brute force
b) Induction
c) Backtracking
d) Deduction
d) Deduction
Which technique suspends a program when a particular line is executed?
a) Automated debugging tools
b) Storage dumps
c) Scatter print statements
d) Code breakpoints
d) Code breakpoints