Complete the code to define the main goal of usability testing.
usability_testing_goal = "Evaluate how [1] users can use a product"
Usability testing focuses on real users to see how easily they can use the product.
Complete the code to show a common method used in usability testing.
def usability_test_method(): return "[1] testing"
User testing is a common method in usability testing where real users try the product.
Fix the error in the usability test feedback collection code.
def collect_feedback(): feedback = input("Please enter your [1] about the product: ") return feedback
In usability testing, we collect user experience feedback, not code or errors.
Fill both blanks to complete the usability test session setup.
def setup_usability_test(): test_environment = [1] participant_type = [2] return test_environment, participant_type
Usability tests are often done in a quiet room with real users to get honest feedback.
Fill all three blanks to create a usability test report summary.
report = {
"test_name": [1],
"participants": [2],
"main_issue_found": [3]
}The report summarizes the test name, number of participants, and main issue found during usability testing.