Waterfall Model

Waterfall model was the first software development model. It was used by many software organization to ensure the quality development of software. Now a day’s not many companies use this model. It has its own advantages and some disadvantages. There are many models which is just improved version of the waterfall model. Waterfall model has … Read more

What Is Use Of “Super” Keyword In Java?

Earlier we have talked about method overriding concept in java during THIS POST to change the implementation of parent class’s method in sub class. In inheritance, Super keyword is used to refer object of immediate parent class. Generally we are using super keyword in inheritance for three different purpose. Let’s see how and when to … Read more

Automate Testlink Test Case Result Using Selenium

This article is about, Run Test cases with automation scripts in test link. It is necessary that you had worked on selenium before. After wards only you will understand this still try to explore from below information. There are some important points and Preconditions for this. You need to install Java first. Then install Eclipse. … Read more

Java Questions For Selenium WebDriver Interview

Part 5 21 : Explain System.out.println(); Answer : System : is a final class in  java.lang package. out : is a static member of system class. It is an instance of java.io.PrintStream. This stream is already open and ready to accept output data. println : is a method of java.io.PrintStream .It is an overloaded method. 22 : Write program to print fibonacci series 0, 1, 1, … Read more