What is the purpose of checked and unchecked exceptions in JAVA?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about fail fast iterators in java?
What do you mean by flow of struts?
Can we use string in the switch case?
why would you use a synchronized block vs. Synchronized method? : Java thread
What are uses of Hash Code?
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?
Is linkedlist thread safe in java?
How to make a class immutable?
What is nested class?
How do you make an arraylist empty in java?
What are aggregate functions explain with examples?
how we can write the string concatenation program in java.