What is a void in java?
Answer / Dalip Kumar
In Java, void is a special data type that represents the absence of any data. It's used to indicate that a method does not return any value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why are the objects immutable in java?
When is an object in the mean to garbage collection?
What are listeners in java and explain ?
What are the types of casting?
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }
What is meant by class loader? How many types are there? When will we use them?
Java is pass by value or pass by reference? Explain
What is the difference between the jdk 1.02 event model and the event-delegation model introduced with jdk 1.1?
Why collection doesn’t extend cloneable and serializable interfaces?
how to make hashmap object as synchronized object?
Infinite loop using while ?
What is memory leak and how does java handle it?