Mention one statement each to achieve i
(a, Bi-directional flow of control
(b) Multiple branching of control
Answers
Answered by
0
Answer:
bi directional flow of control goes from statement to statement
example :
for(i=1;i<=2;i++)
{
System.out.println("Hello");
}
and multiple branching is done with the help of switch case condition
eg.
switch(variable)
{
case 1:
statement
break;
case 2:
statement
break;
default:
statement
}
Similar questions