Complete the code to add a clear and concise defect title.
defect = {
'title': '[1]',
'description': 'App crashes on login',
'severity': 'High'
}The defect title should be clear and concise, describing the issue precisely. 'App crashes on login' clearly states the problem.
Complete the code to include the correct severity level for a critical defect.
defect['severity'] = '[1]'
Critical severity indicates a defect that causes major failure or data loss and needs immediate attention.
Fix the error in the defect report by completing the code with the correct status value.
defect['status'] = '[1]'
The status 'Open' is correct for a newly reported defect. 'Closeded' is a typo and invalid.
Fill both blanks to create a defect report dictionary with a proper priority and reproducibility.
defect_report = {
'priority': '[1]',
'reproducible': '[2]'
}Priority 'High' means the defect should be fixed soon. 'Reproducible' set to 'Yes' means the defect happens every time under the same conditions.
Fill all three blanks to complete the defect report with correct reporter, environment, and steps format.
defect = {
'reporter': '[1]',
'environment': '[2]',
'steps_to_reproduce': '[3]'
}The reporter is 'tester01', environment is 'Windows 11', and steps to reproduce are clearly listed to help developers understand the issue.