Answer Posted / anil kumar
da.accept changes;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is void a class?
What is dynamic object in c#?
Explain inheritance in c#?
Why do we use yield in c#?
What is the use of 'using' statement in c#?
What is the data encapsulation?
Can we create instance of private class in c#?
Can properties be private in c#?
Why should I use interface in c#?
Differentiate between object pooling and connection pooling in c#?
What is difference between ienumerable and ienumerator in c#?
What is icollection in c#?
what is object-oriented programming (oop) language?
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; } }
explain the features of static/shared classes.