Syntax of while loop in C sharp
Write the syntax of the while loop in the C# program.
Expert
Syntax of the while loop in the C# is as follows:
while(condition) //condition
{
//statements
}
An example of the while loop in C# is:
int i = 0;
while(i < 5)
Console.WriteLine("{0} ", i);
i++;
Ooutput of the above code is: 0 1 2 3 4.
State the difference between a ContextMenuStrip control and a MenuStrip control?
Write down some of the features which are present in the VB 2005?
How can you avoid a class from overriding in C# and Visual Basic?
Explain briefly about server-side comments and also write its syntax?
Briefly explain ADO.NET and its features?
Explain the term Cookie? Explain where it can be used in ASP.NET?
What is meant by the term Global Assembly Cache (GAC)?
Explain the XmlWriter class.
Write about ADO.NET in brief.
What are the layouts of ASP.NET Pages?
18,76,764
1959438 Asked
3,689
Active Tutors
1435642
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!