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


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

What are partial classes and use of partial classes?

0 Answers   QuestPond,


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; } }

1 Answers   iGate,


Can you allow class to be inherited, but prevent the method from being over-ridden?

1 Answers  


What is cookies c#?

0 Answers  


What does the dispose method do with the connection object?

0 Answers  






What is a cshtml file?

0 Answers  


When you inherit a protected class-level variable, who is it available to?

5 Answers   CMC, IBM,


Explain the types of assemblies in .net?

0 Answers  


What are the uses of namespaces?

0 Answers  


What is the different types of private assembly and shared assembly?

0 Answers  


What is Delegate and what is it used for ?

0 Answers   NA,


what's the Difference between DataView and DataTable?

10 Answers  


Categories