Complete the code to print the first step a tester should take when starting a new testing task.
print("Step 1: Understand the [1]")
The first step for a tester is to understand the requirements to know what to test.
Complete the code to show what a tester should do after finding a problem.
print("Next, a tester should [1] the problem clearly.")
After finding a problem, a tester should report it clearly so developers can fix it.
Fix the error in the code that shows a tester's mindset to question assumptions.
if not [1]: print("Always question assumptions.")
The tester should question assumptions by checking if they trust them blindly or not.
Fill both blanks to complete the tester's checklist for thorough testing.
checklist = ["Understand [1]", "Design [2]"]
A tester must first understand requirements and then design test cases to check them.
Fill all three blanks to complete the tester's process for handling a bug.
bug = {"id": [1], "status": "[2]", "priority": "[3]"}The bug has an id of 101, its status is 'open', and its priority is 'high'.