Hello Everyone.Sorry for a Long Delay. By the way,Now we are going to discuss about Flow of control(of a program). Flow of Control is a way in which a program is compiled and executed.It can be a bunch of statements Within braces ending with a semicolon or it can be selective or repetitive. Sequential Flow is as mentioned above a bunch of statements ending with semicolon within braces.For Example:- int main() { statement1; statement2; return 0; } Selective Flow includes if-else and switch statements which verifies a condition/text expression in order to execute the statements enclosed under it.The usage of if-else and switch statements is Shown in the Example.Example:- int main() { int a,b,c; cin>>a>>b; cout<<"\n1.Maximum\n2.Minimum\nEnter your Choice="; cin>>c; switch(c)//verify Condition { case 1:if(a>b)//text expression-Condition cout<<a; ...