Syntax of for loop
Explain the syntax of the “for” loop.
Expert
Syntax of using the for loop in C# code is as follows:
for(initializer; condition; loop expression) { //statements }
In the above syntax, “initializer” is the initial value of the variable, “condition” is the expression which is checked before the for loop is executed, and the “loop expression” either decrements or increments the loop counter.
Example of using for loop in C# is given in the following code:
for(int i = 0; i < 5; i++) Console.WriteLine("Hello");
In preceding code snippet, word “Hello” will get displayed for five times in the output window.
What is data type and how many types of data types are there in .NET ?
Explain Custom User Controls in the ASP.NET?
Write the syntax to declare the namespace in the .NET and in VB?
Write three general properties of every validation controls?
What Global.asax file includes in event handlers?
Explain the term multilingual Web site?
Explain the ASP.NET AJAX?
Write the name of the parent class of a Web server control?
How the customized properties of .NET application can be retrieved from XML .config file?
Illustrate Application State in the ASP.NET.
18,76,764
1924714 Asked
3,689
Active Tutors
1413113
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!