Core Java (6529)
Advanced Java (552)
Swing (223)
EJB (402)
Java Networking (49)
Hibernate (1009)
Spring Framework (1486)
Java J2EE AllOther (116) when exactly should we use throws ,and wen exactly should we use the try and catch for exceptional handling
2517There are 2 different ways to create an object. a)By using keyword "new" b)By using Class.forName ("className").newInstance(); What is the difference between these 2 methods.
3 6427In cluster , the load balancing that simply redirect the client request to any available server in weblogic server cluster. Suppose assume we have 4 managed servers and one admin server. can we trace that request is going to which managed server in the cluster? is it possible to tell that request is going to which ipaddr/managed server?
3 11224how this statement works..? public void service(HttpServletRequest request,HttpServletResponse response)
TCS,
2 8496Is it possible to create object with out its default constructor? if possible how? else not possible? justify
5 8351There are 2 classes . Class A and Class B. In Class A i declared a variable in private. if we can access this private variable in Class B. If yes means , how we can access ?
7 12718
What is action chaining ?
How to create a base64 decoder in java8?
i want test pattern of zylog company and some examples also
What is java string pool?
Write a program to find the whether a number is an Armstrong number or not?
What is the difference between break and continue statements?
What is parsing in java?
hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code
Differentiate between static and non-static methods in java.
Is minecraft 1.15 out?
What is the difference between filters and interceptors ?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
Explain public static void main(string args[]) in java.
What is the difference between equals() and == in java?
What do you mean by an interface in java?