What is the use of generics? When was it added to the Java development Kit?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is data movement?

0 Answers  


How do you insert a line break?

0 Answers  


Explain the difference between hashmap and hashtable in java?

0 Answers  


Explain list interface?

0 Answers  


Is zero a natural number?

0 Answers  


why the equals method can be override?when we override the equals method?

5 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


can we access the super class method using subclass object?

4 Answers  


Difference between final and effectively final ?

0 Answers  


What is a jit compiler?

0 Answers  


How do you check if a string contains only numeric digits?

0 Answers  


What is incompatible types in java?

0 Answers  


Categories