Use of Break statement in switch statement
Explain the function of break statement in a switch statement with example?
Expert
Switch statement is the selection control statement which is used to handle several choices and move control to a case statements within its body.
Following code shows the example of the use of a switch statement in C#:
switch(choice)
{
case 1:
console.WriteLine("First");
break;
case 2:
console.WriteLine("Second");
default:
console.WriteLine("Wrong choice");
}
The break statement is used at the end of the case statement. Break statement is compulsory in C# and it avoids the fall through of one case statement to other.
What is the use of Global.asax file?
Distinguish between toolstrip drop-down button and toolstrip split button?
Explain different types of generations in a garbage collector?
Explain DataAdapter class in the ADO.NET?
What setting should be added in a configuration file to reject the particular user from accessing secured resources?
State different Visual Basic features which provide support to the LINQ?
Elucidate the types of Authentication?
List some of the new controls which are introduced in the ASP.NET AJAX Control Toolkit?
Compare and contrast in brief the C# and Visual basic.NET?
Differentiate between the Finalize() and Dispose()?
18,76,764
1951719 Asked
3,689
Active Tutors
1452234
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!