Complete the code to name the type of testing that checks app behavior on different devices.
The testing type that ensures the app works on various devices is called [1] testing.Compatibility testing checks if the app works well on different devices and OS versions.
Complete the code to name the testing type that checks app speed and responsiveness.
Testing how fast the app responds and performs under load is called [1] testing.
Performance testing measures app speed, responsiveness, and stability under stress.
Fix the error in naming the testing type that checks app security.
Testing that focuses on protecting the app from threats is called [1] testing.
Security testing ensures the app is safe from vulnerabilities and attacks.
Fill both blanks to complete the dictionary comprehension describing testing types and their focus.
testing_focus = {"Compatibility": "[1]", "Performance": "[2]"}Compatibility testing focuses on devices and OS versions, while Performance testing focuses on app speed and responsiveness.
Fill all three blanks to complete the set describing mobile testing types and their goals.
testing_goals = {"Security": "[1]", "Usability": "[2]", "Functional": "[3]"}Security testing protects the app from threats, Usability testing ensures the app is easy to use, and Functional testing verifies app features work correctly.