What is a result of condition statement in Algorithm?
Answers
Answered by
2
Explanation:
In a conditional statement you make a test. The result of the test is a Boolean - either True or False. If the result of the test is True you take a certain course of action and if the result of the test is False you take another course of action. IF condition THEN sequence 1 ELSE sequence 2 ENDIF.
Answered by
1
Answer:
A CONDITIONAL is a type of step in an algorithm where a decision must be made. The syntax and exact usage may be different but they all accomplish the same thing, which is to allow for program execution based on conditionals. The basic flow is: If some condition is true then do this, otherwise do that.
Hope it helps you!
please mark me as brainalist!
Similar questions