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 |
what are variables in java
What is the difference between delete and delete[]
What is a stack class in java ?
0 Answers Akamai Technologies,
1.) if we use "private" in place of "public" in public static void main()... 2.) if we use "int" in place of "void".... 3.) can we ommit "static" keyword from that statement.... 4.) also can we give the command line arguments type as int type or float,etc.(.i.e (string args[]))
What are the characteristics of Final,Finally and Finalize keywords.
How do you clear a method in java?
we have two threads..both the threads are reading the data.. is there any need of synchronization there?...justify it?
tell me some common
What is substring of a string?
What class allows you to read objects directly from a stream in java programming?
Can we override the static methods?
How to create an instance of a class if the class has private constructor?