How do I compare two strings in word in java?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between operator overloading and function overloading
0 Answers Tavant Technologies, Virtusa,
What is meant by object?
Can we have static methods in an interface?
When should I use singleton pattern?
What are features of java?
Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?
Difference between Preemptive scheduling vs. Time slicing?
What is singleton class?
16 Answers 3i Infotech, 7 Seas, ABC, Amdocs, Cap Gemini, Oracle, Persistent, TCS, Techforza,
What is the association?
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 large is a boolean?
how to deploy tomcatserver to weblogic server? write d following steps?