What is meant by oops concept in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Can we extend a class with private constructor?

0 Answers  


What do you understand by Header linked List?

0 Answers   Genpact,


Why java is secure? Explain.

0 Answers  


What is a substitution variable?

0 Answers  


What is a java predicate?

0 Answers  


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?

5 Answers  


Explain about serializable interface in java?

0 Answers  


What is unicode with example?

0 Answers  


What are the types of strings?

0 Answers  


Can we sort hashset in java?

0 Answers  


Can a function return a function?

0 Answers  


How many bits is a char?

0 Answers  


Categories