What is the difference between the paint() and repaint() methods in java programming?
No Answer is Posted For this Question
Be the First to Post Answer
class A{ some variables; public void a()throws Excepion1,Exception2{....} } class B extends A{ variables... public void a()throws E2,E3{.....} } Qns: here override of methods occurs or not,ore else wil give any compilation error or run properly..plz tell me briefly whts happening with the above codes....
What is parsing a sentence?
Difference between Array and vector?
wht is customised exception?
1 Answers Logica CMG, Novell, Prudential,
What is the biggest integer?
Explain 5 features introduced in jdk 1.7?
What do you mean Abstraction in java?
If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?
Why can't we make jsp as a controller and action servlet in struts?
Can we overload final method in java?
What does indexof mean?
What is object of class in java?