What do you mean by platform independence?
No Answer is Posted For this Question
Be the First to Post Answer
What is object class in java?
why doesn't java run on all platforms?
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 is lexicographically smallest string?
What is polymorphism java example?
How to use string tokenizer class.
Is string is a keyword in java?
Does printwriter create a file?
What is lazy initialization in java?
How to Create A Wapper Class in core Java and Why are Use in java?
Tell us something about an iterator.
Write a java program to print fibonacci series?