Answer Posted / gargi choudhary
Wavelength
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What exactly happens when we debug and build the program?
What is a value type in c#?
What is serialization in unity?
How do namespaces work?
Can abstract class be sealed?
Give 2 scenarios where static constructors can be used?
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; } }
How to handle exceptions that are raised in a component?
What are the advantages of using c#?
What do you know about Translate Accelerator?
Is array a collection c#?
What are the different states of a thread?
What is var c#?
What are extension methods and where can we use them?
Is it possible to force garbage collector to run?