Computer Science, asked by Ketanjiwane8814, 11 months ago

Distinguish between conditional control and unconditional control statements

Answers

Answered by harshitabharadwaj602
2

Answer:

here is :-

  • explain

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example:

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example: int i = 5;

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example: int i = 5; if(i==5)

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example: int i = 5; if(i==5) {

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example: int i = 5; if(i==5) { COUT<<"THIS IS CONDITIONAL STATEMENT";

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example: int i = 5; if(i==5) { COUT<<"THIS IS CONDITIONAL STATEMENT"; }

Conditional Statements are the statements which will get executed once and it is not repetitive like a for loop. It will not check the loop condition again after it gets execute.example: int i = 5; if(i==5) { COUT<<"THIS IS CONDITIONAL STATEMENT"; }if,if...else,switch are the conditional statements whereas for,while,do...while are the control statements.

Similar questions