What does virtual keyword mean ?

Answers were Sorted based on User's Feedback



What does virtual keyword mean ?..

Answer / nitin kumar tomar

Virtual mean that the function and property can be
overriden in drive class

Is This Answer Correct ?    35 Yes 2 No

What does virtual keyword mean ?..

Answer / ganesh

use in polymorphism

Is This Answer Correct ?    9 Yes 1 No

What does virtual keyword mean ?..

Answer / a.venkatakrishna

The function preceeded by VIRTUAL keyword can be overriden
in its derived classes...BUT it is not mandatory to
override...

Is This Answer Correct ?    2 Yes 0 No

What does virtual keyword mean ?..

Answer / bapu

derived class can modify the logic for function or property
which declared as virtual.....

Is This Answer Correct ?    1 Yes 1 No

What does virtual keyword mean ?..

Answer / sanjeet kumar rai

The keyword virtual is applied to a method declaration to
indicate that the method may be overridden in a subclass. If
the virtual keyword is not applied and a method is defined
in a subclass with the same signature as the one in the
super class, the method in the super class is hidden by the
subclass implementation.

Is This Answer Correct ?    3 Yes 3 No

What does virtual keyword mean ?..

Answer / yoyo

derived class

Is This Answer Correct ?    3 Yes 11 No

Post New Answer

More C Sharp Interview Questions

Can abstract class be instantiated c#?

0 Answers  


How to create events for a control? What is custom events? How to create it?

0 Answers  


What is difference between c sharp and c#?

0 Answers  


How many bits is int32?

0 Answers  


Which is algorithm is used to Manage the Memory in .net ??

7 Answers   TCS,






Explain about Threading Types.

0 Answers   DELL,


What are custom exceptions in C#?

0 Answers   Arigo Infotech,


Hoe can i connect the table into the c# application?

2 Answers  


Is it possible to have a static indexer in c#?

0 Answers  


What is strongly typed in c#?

0 Answers  


Explain copy constructor?

0 Answers   Accenture,


What are the 4 pillars of any object oriented programming language?

0 Answers  


Categories