Answer Posted / ayush agarwal
Basically it is S/w help for creating a database..
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is Implementation inheritance and interface inheritance?
What are cookies in c#?
What does return do in unity?
Why dataset is used in c#?
What is c sharp used for?
Which technology is best for desktop application?
What is private constructor c#?
What is form feed and carriage return?
Explain the types of Polymorphism.
How does it work?
Explain about ODP.net
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; } }
Why is static constructor called first?
What is the difference between == and object.equals?
Is is possible to force garbage collector to run?