What is jvm? Why is java called the platform independent programming language?
Why stringbuilder is not thread safe?
What is the specification of ?CODEBASE? in an applet?
What is the importance of main method in Java?
What does @param args mean in java?
Why are the methods of the math class static?
What is an example of declaration?
explain the life cycle of thread?
10 Answers CTS, NIIT, TCS,
What is Exception handling in Java How do you handle run time errors please explain with an example
suppose we have an interface & that interface contains five methods. if a class implements that interface then we have to bound that to give tha definition of all five methods in that class. If we declare that class as abstract then can we call only two methods to give the deinition of that method & i don't want to give the definition of all the methods? can it possible
how can i cal servlet from jsp page?how can i pass variablesfrom the jsp that servlet can access?
What is the final variable?
public class Base { public void myMethod(int a,intb) {} } // Uses myMethod and then hides it. public class DerivedOne extends Base { private void myMethod(int a,int b); } will this compile or not .yes or no. why