What is meant by vector class, dictionary class, hash table class, and property class?
What is the r character?
What is ellipsis in java?
What is parameter example?
If a method is declared as protected, where may the method be accessed?
What is use of a abstract variable?
What is finalize method?
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?
write a class to input 2 points by the user & check the line maked by the points is horizontal,vertical or rectangle?
What is a Hash Table? What are the advantages of using a hash table?
What is JVM ? use of JVM?
What do you mean by Function Overloading in java?
how do you store phone numbers using java collections