In this article, we're going to look at a basic login verification form using JSP and servlet. If a user's entered username and password matches… Read More
Simple code to display addition and product of two numbers using JSP. 1) Create a landing page in HTML. Index.html <!DOCTYPE html> <html> <head> <meta… Read More
There is another way to call a servlet from another servlet using sendRedirect method. 1) Create Index.html file by clicking on 'new' tab and select… Read More
Here's the code to invoke a servlet from another servlet using RequestDispatcher interface. 1) Create index.html. Index.html <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>Practical Work</title>… Read More
Static and Dynamic testing are testing techniques that ensure quality and improved performance of a software. The basic difference between static and dynamic testing is… Read More
In this article, we will formulate test cases for triangle problems using data flow testing in such a way that all the du and dc… Read More
Data flow testing doesn't deal with the flow of the program, instead, it tracks which variable is used when. It means that it simply checks… Read More
In this type of testing, test cases are drived by considering all the independent paths of the DD graph. Here's is the triangle problem code.… Read More
In this article, we will perform path testing on the quadratic equation program (Here's the code) in order to generate test cases. The first step… Read More
Program If you're curious to see the "Triangle Problem " code, then the link is here with tested test cases. Decision Table Based Testing In… Read More