Topics
Advanced Web Designing
Introduction to SEO (Search Engine Optimization)
Advanced Javascript
Emerging Technologies (IOT, Cloud Computing, AI,5G)
Server-side Scripting (PHP)
E-Commerce and E-Governance
- Switch Case
- Looping Statement
- Break and continue statements
Switch case and Looping Structures
Switch Case
Switch statement is a multiway decision structure that tests an expression against case values. When a match is found, the associated block is executed. Case values must be the same data type as the switch variable.
Looping Statement
There are mainly two types of looping structures:
- for...loop: This loop executes statements as long as condition becomes true, control comes out from the loop when condition becomes false. Syntax: for(initialization;condition;iteration)
- While....loop: It’s working is same as the for loop with loop being terminated when condition is false. BUt here only condition could be mentioned in syntax. Syntax: initialization; while(condition)
Break and continue statements
Break statement is used to jump out of loop. It is used to make an early exit from a loop. Sometimes in looping it may be necessary to skip statement block and take the control at the beginning for next iteration. This is done by using ‘continue’.
If you would like to contribute notes or other learning material, please submit them using the button below.