Complete the code to start a bug report with a clear title.
bug_report = {"title": "[1]", "description": "App crashes on login."}The title should be clear and descriptive. "App crash on login" tells exactly what the problem is.
Complete the code to add a severity level to the bug report.
bug_report = {"title": "App crash on login", "severity": "[1]"}The severity 'high' indicates the bug is serious and needs urgent fixing.
Fix the error in the bug report by completing the steps to reproduce field correctly.
bug_report = {"title": "App crash on login", "steps_to_reproduce": [1]The steps to reproduce should be a list of clear, separate actions. Option D uses a list of strings, which is correct.
Fill both blanks to complete the bug report dictionary with expected and actual results.
bug_report = {"expected_result": "[1]", "actual_result": "[2]"}The expected result is that the user logs in successfully (A). The actual result is the app crashes with an error message (B).
Fill all three blanks to complete the bug report with environment, status, and assigned_to fields.
bug_report = {"environment": "[1]", "status": "[2]", "assigned_to": "[3]"}The environment is 'Windows 11' (A), status is 'Open' (B), and the bug is assigned to the 'QA Team' (C).