Core Java (6529)
Advanced Java (552)
Swing (223)
EJB (402)
Java Networking (49)
Hibernate (1009)
Spring Framework (1486)
Java J2EE AllOther (116) How to deploye the java application in web logic server please brief explain with screen shot please help me ?
4 9162System.out & System.in are final static data member of System class but we can change there reference through setOut() & setIn() method how...
2 6068why Bean class implements all business method of Remote interface but bean bean class not implements the remote interface
2471The following program is Overloading or Overriding? public class PolymorphismEx { public int sampleMethod(int a) { return a; } public String sampleMethod(int a) { return "Is it Overloading or Overriding???"; } }
4 7635I Have a class abstract with one abstract method, so that method should override in the subclass, but i dont want to override, if i am not override what will happen? If compilation will occur then i dont want to give compilation error, then what we need to do??? See the sample program. public abstract class AbstractExample { public abstract void sampleMethod(); } public class AbstractExampleImple extends AbstractExample { }
2 6047is it mandatory to deaclare all variables public static fianl in interfaces?if i declare like in the below program, public interface A { public static final int I=0; int j=0; } in interface A,what is the difference between I,j?
2 4564
What is return type in java?
How many types of session beans are available in ejb?
What is dao in spring?
What is assembly language?
Name some OOPS Concepts in Java?
What are the different types of ioc (dependency injection)?
What exactly are the functions of servlet?
How we can configured action mapping in struts?
How many types of JDBC Drivers are present and what are they?
Why we use methods in java?
What is difference between throw and throws ?
For ejb applications with bean-managed transaction demarcations, which of the following is used by the client to get a reference to the usertransaction object for the weblogic server domain? : BEA Weblogic
What is JDBC DataSource and what are it’s benefits?
What are runtime exceptions?
What is the purpose of default constructor?