Which oo concept is achieved by using overloading and overriding?
No Answer is Posted For this Question
Be the First to Post Answer
Explain an intermediate language?
Can we override compareto method?
what is mean by String and StringBuffer? What is mean by Methooverriding and Overloading?
What are the major advantages of internal iteration over external iteration?
What is the difference between length and size in java?
Explain about OOPS concepts and fundamentals.
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 difference between == and === in js?
Will set allow duplicates in java?
List some features of the abstract class.
State the main difference between c++ and java?
Why to use nested classes in java?