Which of the following best describes "residual risk" in the context of risk assessment and mitigation?
- Remaining risk after mitigation efforts are applied
- Risk before any mitigation
- Risk that can be completely avoided
- Risk transferred to another party
"Residual risk" refers to the risk that remains after all mitigation efforts have been applied. Even after implementing all the risk management strategies, there's often some level of risk that persists. It's crucial for organizations to understand this remaining risk and decide whether it's within acceptable limits or requires further action.
During which stage in the bug life cycle is a bug verified after it has been fixed?
- Assigned
- Closed
- Fixed
- Verified
In the bug life cycle, after a bug has been fixed by the development team, it moves to the "Verified" stage. During this stage, testers retest the issue to confirm that the defect has indeed been resolved. If the fix is successful, it can then move to the "Closed" stage.
How does the "sandwich" approach of integration testing combine different methodologies?
- Combines black-box and white-box testing
- Combines regression and smoke testing
- Combines top-down and bottom-up integration
- Combines unit and system testing
The "sandwich" approach of integration testing merges both top-down and bottom-up methods. It allows simultaneous testing of the top and lower ends of software, ensuring quicker detection of interface errors throughout different levels of the application.
The process of creating test scripts that can be reused across multiple test cases or modules is known as _______.
- Script Debugging
- Script Refactoring
- Test Initialization
- Test Modularization
Test Modularization refers to the process of breaking down test scripts into reusable modules or units. These modules can then be invoked or called by different test cases, ensuring that repetitive sequences or functionalities do not need to be scripted again, thus promoting reusability and reducing redundancy in the testing process.
In Continuous Integration, regular _______ ensures that the new code changes do not introduce defects.
- Deployment
- Documentation
- Merging
- Testing
Regular "Testing" in Continuous Integration ensures that the code changes made by developers are validated and verified to work as expected. This prevents defects from being introduced into the mainline and assures code quality in the final product.
Why is modular scripting considered beneficial in test automation?
- It enhances the look of the script
- It makes scripts more readable
- It minimizes memory usage
- It promotes script reusability and maintenance
Modular scripting divides the test scripts into small, manageable modules or functions. These modules can then be reused across multiple test scripts. This approach not only promotes reusability but also simplifies maintenance. If a functionality changes, only the respective module needs to be updated, without affecting other scripts.
In Configuration Management, the official source of all configuration documentation is called the _______.
- Configuration Baseline
- Configuration Database
- Configuration Library
- Version Control
The Configuration Library is the official repository where all approved and finalized configuration documentation is stored. It ensures that there is a single source of truth, reducing confusion and inconsistencies that may arise from using outdated or unofficial documents.
Which testing type focuses primarily on the visual aspects and navigation of an application?
- Black Box Testing
- GUI Testing
- Load Testing
- Regression Testing
GUI (Graphical User Interface) Testing primarily focuses on the software's visual elements, ensuring that they adhere to design specifications. This includes validating button placements, color schemes, layouts, navigation, and other graphical elements to ensure a user-friendly and functional interface.
A _______ Tester focuses on ensuring the usability and overall user experience of the application.
- Functional
- Performance
- Security
- UI/UX
A UI/UX Tester primarily focuses on the usability, accessibility, and overall user experience of an application. They evaluate the interface, navigation, graphics, and overall user interaction with the software to ensure a seamless and intuitive experience.
Which automation testing tool offers a feature known as "Object Spy" to identify object properties?
- Appium
- QTP (Quick Test Professional)
- Selenium
- TestNG
The "Object Spy" feature is unique to QTP (Quick Test Professional). It allows testers to point and click on application objects to view their properties, making it easier to identify and understand the attributes of various application components. This aids in creating accurate and effective test scripts.