What are virtual functions?
Answers were Sorted based on User's Feedback
Answer / satendra
In OOP, virtual methods are those methods which can be
overridden within an inheriting class by a function with the
same signature. This concept is a very important part of the
polymorphism portion of OOP. In JAVA by default all methods
are virtual.
| Is This Answer Correct ? | 19 Yes | 3 No |
Functions which are called at runtime are called virtual
functions.
| Is This Answer Correct ? | 8 Yes | 7 No |
How do you avoid global variables?
What is var keyword ?
Infinite loop using while ?
Will the jvm load the package twice at runtime?
Why non nested classes in java are not having marked as protected access specifier
Where is stringbuffer stored?
what is unreachable code problem in multiple catch statements
What is hash table in java?
Is arraylist zero based?
What is the maximum size of list in java?
How do you replace a string in java?
What is dynamic binding(late binding)?