Hire QA – Specialized in QA Recruitment, Technical Interviews and Testing Solutions

Archives: FAQs

What are the properties of a good Requirements Document?

The requirement should be feasible, completely explained in requirement specification document. There should be single requirement, easily read and understood by non-technical people, should not contain definitions, reasons for need of requirement. The requirement should not have any guess work or any confusion (e.g. for how long, 50% or more) should not conflict with other …

What are the properties of a good Requirements Document? Read More »

What is Recovery Testing?

Recovery testing is to test how quick the application is recovered after it has gone through system crash or hardware failure. Tester can change interface, protocol, firmware, hardware, and software configurations as close as the actual conditions. Recovery tests after hardware restored will be tested for getting application again coming back and start running as …

What is Recovery Testing? Read More »

What is production server?

Production server is a server used to host website contents such as front end pages, css files, javascript files, backend tables, sql files, procedures etc. integrated and deployed so that end users can access them through their website address using browser and internet, or download on their mobile for using the features of application.

What is a build? What is the release?

The software build is application compiled and integrated in order to get tested by software testers.Release is deploying software with new version deployed to the customer, it has additional features that were absent in previous release, and change request requested by customers using previous release.

Difference between HTTP and HTTPS, Explain how the data is secured in HTTPS?

HTTP is short for Hypertext Transfer Protocol, when you enter http:// in your browser, you inform browser to allow connection via http protocol which is TCP (transmission control protocol), in order to send and receive data packets over the web.HTTPS is short for Hypertext Transfer Protocol Secure, when you enter http:// in your browser, you …

Difference between HTTP and HTTPS, Explain how the data is secured in HTTPS? Read More »

What is Mutation testing?

Mutation testing is white box testing usually conducted in unit testing level, by changing few statements in source code and validate using debugger. Objective of mutation testing is to assess test case quality based on fault-based test strategy that fails mutant code while debugging.