Which is the best way for keeping the data in XML or SQL
server..and why?
Answer Posted / shaheen
To store the data, the best and appropriate way is SQL
SERVER as it is more compatible with any language and gud
database.
i think for a short term XML also plays vital role in
storing the data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is static void main in c#?
Tell us something about static linking and dynamic linking?
What is tuple in c#?
What are the commonly used i/o classes?
Is c# still popular?
What is difference between constants and read-only?
What is a clr host?
Is equal in c#?
What are the extension methods in c#?
What is difference between virtual and override in c#?
What is array class in c#?
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; } }
Is dictionary reference type c#?
What does void mean in c#?
What is the use of command builder?