What are interfaces?
Answers were Sorted based on User's Feedback
Answer / luck
in interface v can only declare a function it will not have any properties
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
interfaces decalres methods and variables...where methods
are purely abstarct and variables are abstract and final
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sri
Interface is a mechanism in Java which is used to create prototype of the classes.
Is This Answer Correct ? | 0 Yes | 0 No |
What are interfaces?
what is the purpose of the wait(), notify(), and notifyall() methods? : Java thread
Does the order of public and static declaration matter in main method?
Is an empty arraylist null?
What is an escape character in java?
What is contract between hashcode and equal method?
What is difference between arraylist and list in java?
Difference between arraylist and vector.
Is null in java?
Which is better arraylist or vector?
take any 4 input numbers. like 2345.. wanted out put is All 16 combinations of the number 2345.. for example- taking input as 4565 output- 5654 4556 4655..
what difference between throw and throws in exception handling.