What is verification?

Verification is also known as static testing. General flow of software development is, developer develop the software as per the requirement document. But what if there is an ambiguities in requirement documents? What if the requirement is not complete? There are many possibilities. If by ignoring all the possibilities. And developer keeps on developing the … Read more

Software Manual Testing Tutorial Part 1

Manual testing is process to test any software application manually which helps to find bugs from software application in order to improve quality of software system. When any new software application is developed, Each and every functionality must be tested manually before it pushed to live environment. One not need knowledge of any automation testing … Read more

Interview Questions Of Core Java For Selenium WebDriver – Part 2

Part 2 Core java interview questions for selenium automation testing 6 : What is the difference between static and not static variable? Answer : Main differences are as bellow. Static variables are preceded by static keyword. For non-static variable, there is not any preceding keyword. Memory is allocated for static variables at the time of class loading. Memory is … Read more