Can we override a variable in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is serialization in java?
What is the difference between this() and super()?
Have you ever used hashtable and dictionary?
What is substring 1 in java?
What is the difference between class & object?
explain copyonwritearraylist and when do we use copyonwritearraylist?
What is overriding in java?
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 JFC?
What is collection class in java? List down its methods and interfaces.
Considering notepad/ie or any other thing as process, what will happen if you start notepad or ie 3 times? Where 3 processes are started or 3 threads are started?
Explain the difference between an object-oriented programming language and object-based programming language?