How many bytes is double?
No Answer is Posted For this Question
Be the First to Post Answer
class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.
I Have a class abstract with one abstract method, so that method should override in the subclass, but i dont want to override, if i am not override what will happen? If compilation will occur then i dont want to give compilation error, then what we need to do??? See the sample program. public abstract class AbstractExample { public abstract void sampleMethod(); } public class AbstractExampleImple extends AbstractExample { }
What are the main differences between notify and notifyAll in Java?
Is 64bit faster than 32 bit?
How java is platform independent?
41 Answers College School Exams Tests, Infosys, TCS,
Which is the best sorting technique in java?
A person says that he compiled a java class successfully without even having a main method in it? Is it possible?
Is string serializable in java?
What is the difference between the prefix and postfix forms of the ++ operator?
Write a program to show whether a graph is a tree or not using adjacency matrix.
Can a class be subclass of itself?
How to prevent a field from serialization ?