What is exception handling in java?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me the latest versions in java related areas?
What is the difference between an object-oriented programming language and object-based programming language?
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?
How do you check if a string is lexicographically in java?
where can we get jAVA project orientation traing in HYDERABD
What is argument in java?
What is codebase?
what is deadlock in threads? with example
what is the purpose of class "Object" which is base class for all classes?
Name some OOPS Concepts in Java?
Marker interface means , interface which has no methods.Then what is the necessity of its usage.I read "it tells the compiler that it should be treated differently ". "It is used to store state of an object". But still am not clear.Please explain clearly.
which one is performance wise advantageious from List,Set,Map?