What is difference between overloading and overriding in java?
No Answer is Posted For this Question
Be the First to Post Answer
Hi Friends, can u give code to convert ArrayList to HashMap and HashMap to ArrayList.
What are the changes in java.io in java 8 ?
What is an accessor?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
State the difference between strings and arrays.
What is difference between static class and singleton pattern?
what is bytecode ?explain in detail and watz the difference between bytecode and machine code?
How listener identify that the event came from a particular object?
what is a thread pool in java and why is it used?
What exactly is java?
Can we create an object of private class?
Why do we need hashset in java?