Wednesday, 17 December 2014
Who is leader??
What makes anyone a leader??
What should be the properties of a leader??
Do you want to become a leader??
Answer to first question,Who is leader??
So according to me a leader is anyone who leads others and able to convince them.
In other words,A leader is someone who organizes a group of people and then achieve a common goal with them.
...
Sunday, 26 October 2014
Wednesday, 22 October 2014
Servlets in Java

Servlet Program
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public...
Friday, 17 October 2014
Best Java Interview Questions

In this post i will explain how to convert an array of Strings to a list(i.e. ArrayList) by using two programs.
In first program I have converted the array to list by using List interface which is converting the array to ArrayList.
Arrays.asList(arr)
For...