how to implement a web service in .net


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

Post New Answer

More C Sharp Interview Questions

What is a nested type. Give an example?

0 Answers  


What are the security issues if we send a query from the application?

1 Answers   Microsoft,


hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }

2 Answers  


Contrast System.String and System.Text.StringBuilder classes?

0 Answers   Siebel,


What is an int in c#?

0 Answers  


Please write a program to display “welcome to bestinterviewquestion.com” in c#?

0 Answers  


What exactly is serverless?

0 Answers  


What?s a multicast delegate?

3 Answers  


Is it possible to execute multiple catch block for a single try statement?

0 Answers   Siebel,


If a class derives from another class, will the derived class automatically contain all the public, protected, and internal members of the base class?

0 Answers  


Is there a way to force garbage collection?

0 Answers  


Are classes passed by reference in c#?

0 Answers  


Categories