CONTROL STRUCTURE NOTES
3. types of control structures
-
Sequential Control Structure
-
Selection (Decision-Making) Control Structure
-
if
-
if-else
-
if-elif-else
(Python) /else if
(C/Java) -
switch
(C/Java)
-
-
Iteration (Looping) Control Structure
-
for
loop -
while
loop -
do-while
loop
-