What is split return?
No Answer is Posted For this Question
Be the First to Post Answer
what is translator and it types
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?
What are void pointers?
What is escape analysis algorithm in JVM and how garbage collection actually worked n how it transfer the objects from one kind of space to other?
What is meant by memory leak?
when to use ArrayList and when to use HashMap in webApplication.
what invokes a threads run() method? : Java thread
Which sorting algorithm is in place?
What is the smallest package in Java API?
What is the purpose of the enableevents() method in java programming?
What is compile time polymorphism?
20 Answers CTS, Elementus Technologies, Oracle,
Is array serializable java?