What does virtual keyword mean ?

Answer Posted / yoyo

derived class

Is This Answer Correct ?    3 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain hash table in c# ?

662


What is arraylist class in c#?

532


Explain about generics in c#.net?

515


What is final keyword in c#?

531


Please write a program to display “welcome to bestinterviewquestion.com” in c#?

532






what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3330


Can we declare private class in c#?

482


These questions were asked me in a technical interview: •If we deploy an application on multiple server (like database server, web server) then, each request should be redirected to proper server, then how you will handle it in your code? •How security pinholes will be handled in an application? •What things should be considered while writing a web application? •How will you do load/performance testing of web application? Which framework you will use for it? •How will you implement a cache for results which require a DB access? Please let me know how to write an web application considering all these points. I am not so much aware of architechural design of web application. Your guidelines will be helpful.

2506


What is field in c#?

467


Is a decimal an integer?

477


What are c# i/o classes?

569


What is foreach loop in c#?

532


How can you read 3rd line from a text file?

532


Between windows authentication and sql server authentication, which one is trusted and which one is untrusted?

488


What is the difference between structure and class in c#?

473