What is a java list?
No Answer is Posted For this Question
Be the First to Post Answer
Program to output as below formate: 1 2 3 4 5 6 7 8 9 10
Can we define static methods inside interface?
What is the similarity between dynamic binding and linking?
Is upper case in java?
How many types of java are there?
What is tree node in java?
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
What is the flag in java?
What is Distributed Application and what is its usage?
What is Transient and volatile
What is abstract class constructor called?
IN java collections we have both interfaces and classes. instead of using interfaces why we can't use classes only like that why we can't use interfaces only. why we need two things interface and class.