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 |
Which method returns the length of a string?
Hi Friends, can u give code to convert ArrayList to HashMap and HashMap to ArrayList.
What are advantages and disadvantages of OOPs?
How to decrease number of hashings in has
What is a function in java?
How to define a constant variable in Java?
what is meant by serialization?
What will happen if we write code like: try{}catch(exception e)catch(IOException i)
Difference between overloading and overridding?
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 } }
How to create two different thread class inside a main function?
What is non static block in java
10 Answers Emphasis, Ness Technologies,