Is ram a heap?


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

Post New Answer

More C Sharp Interview Questions

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 a constructor be static in c#?

0 Answers  


How can you overload a method?

3 Answers  


What is thread life cycle in c#?

0 Answers  


What do you mean by synchronous and asynchronous operations?

0 Answers  






What are the steps to create an assembly and add it to the gac?

0 Answers  


when data member or member function is static is acess specifier is considered??

2 Answers  


What are the benefits of using generics?

0 Answers  


How do I move from one form to another in c#?

0 Answers  


What are strin concatation methods in c#?

1 Answers   Phoenix Technologies,


Can abstract classes be final?

0 Answers  


What are custom exceptions?

0 Answers  


Categories