When selecting test cases for automation, why is it recommended to choose those with high repeatability?

  • They are easier to script
  • They ensure better code coverage
  • They highlight UI changes better
  • They yield higher ROI
Test cases with high repeatability are ideal for automation because they need to be executed multiple times across different test cycles. Automating such tests can save significant time and effort in the long run, thereby yielding a higher Return on Investment (ROI). Repetitive tasks are where automation shines the most.

What is the key advantage of using QTP (Quick Test Professional) over other automation tools?

  • Limited Language Support
  • Open-Source Nature
  • Supports Visual Basic Scripting
  • Supports only Web Applications
QTP (now known as UFT - Unified Functional Testing) stands out because it supports Visual Basic Scripting (VBScript) for customization of the test procedures. This offers testers flexibility and power in designing test scripts tailored to specific testing needs, setting it apart from some other tools.

The concept of providing multiple ways to locate a web page within a set of web pages is known as _______.

  • Multiple Entry Points
  • Multiple Ways
  • Navigation Points
  • Web Mapping
The "Multiple Ways" concept emphasizes providing different methods, such as site search, sitemaps, or a table of contents, to locate a specific web page within a set. This ensures users can easily find information and enhances user experience.

Which element of Configuration Management is responsible for keeping a record of all changes made to the software?

  • Configuration Auditing
  • Configuration Control
  • Configuration Identification
  • Configuration Status Accounting
Configuration Status Accounting is a crucial element of Configuration Management, which keeps track of the status of components and ensures a record of all changes. This helps in maintaining traceability, ensuring that all components are consistent with their specified requirements.

What is the most critical factor to ensure the effectiveness of a security audit?

  • Comprehensive Reporting
  • Skillset of the Auditor
  • Speed of the Audit
  • Use of Automated Tools
The effectiveness of a security audit largely depends on the skillset and expertise of the auditor. A proficient auditor can accurately identify vulnerabilities, understand the nuances of the system, and provide valuable recommendations. Tools and speed are essential, but human expertise ensures a comprehensive and effective audit.

In which testing phase do internal employees of the developing organization test the software before it's released to a select group of external users?

  • Alpha Testing
  • Component Testing
  • Integration Testing
  • Usability Testing
Alpha Testing is a type of acceptance testing conducted in a controlled environment. Here, internal employees of the developing organization test the software. It ensures that major bugs are identified and rectified before the software reaches the Beta Testing phase or the end users.

Mobile application testing that involves evaluating the app's behavior under specific conditions like low battery or interrupted internet connection is known as _______ testing.

  • Interrupt
  • Load
  • Performance
  • Stress
"Interrupt Testing" focuses on ensuring that the mobile application can handle interruptions gracefully, such as incoming calls, low battery warnings, or intermittent loss of network connectivity, without malfunctioning or crashing.

In a test strategy, what defines the testing level that should be applied, such as unit, integration, or system testing?

  • Risk Assessment
  • Test Deliverables
  • Test Level Definition
  • Test Tool Selection
The "Test Level Definition" in a test strategy outlines which level of testing should be applied, whether it's unit, integration, system, or any other level. This helps in ensuring that the right testing techniques are used at the appropriate stages of development.

A _______ is a comprehensive review of an organization's adherence to regulatory guidelines.

  • Code Review
  • Compliance Audit
  • Functional Testing
  • Security Audit
A Compliance Audit is a detailed review process that ensures an organization is adhering to the regulatory guidelines applicable to them. This could be in the context of financial, operational, or IT-related regulations. Such audits provide assurance that the organization operates within legal confines.

For Continuous Integration to be effective, what should developers frequently do with their code?

  • Merge changes into the main/shared branch frequently
  • Refactor it
  • Review it manually
  • Run only unit tests
Continuous Integration relies on developers frequently integrating their changes into a main or shared branch, allowing for quick detection of integration issues. This frequent merging ensures that issues are detected and fixed early, reducing the integration pains at later stages.