Unit-1 Introduction to Java Control structures including selection &Looping
Control structures
DECISIONCONTROLSTRUCTURES
If-statement
IF-ELSE STATEMENT
IF-ELSE LADDER(MULTIPLE IF ELSE)
Switch Statement …………………………………………………………………………………………………
Repetition Control Structures
While Loop
Do…While Loop
For Loop
Java’s Jump Statements Java supports three jump statements: break, continue and return. These statements transfer control to another part of the program.
Break Statement
Continue Statement
Return Statement