which statement allowed using the set of instruction for executing the program depending upon the text condition
Answers
Answered by
0
Answer:
Conditional execution controls whether or not the core will execute an instruction.
Please mark me as Brainlist.
Answered by
0
Conditional statement allowed using the set of instructions for executing the program depending upon the text condition.
Explanation:
A conditional statement consists of a condition and a task.
When the condition is true, the application performs the task.
The condition portion of a conditional statement is also called an expression.
It is used if to specify a block of the program to be executed, if a specified condition is true.
Use else to specify a block of the program, to be executed, if the same condition is false.
Use else if to specify a new condition to test, if the first condition is false.
Similar questions