Conditional (computer programming)
Conditional Statement is a term used on computer science defining a vital structure used on a programming language. A conditional Statement is a request to the computer to make a choice using a given data comparison. The most common is the If Then. It works this way. When the computer finds an If (reserved word) it waits for a data comparison, for example, x = 0 and evaluates the conditional, if is True, the code following the Then (another reserved word) shall be executed, if not, then the execution shall continue from the final of the Statement. According with the language, the If can or not use the Then, use brackets, use another clause called Else, even an ElseIf. There are many other Conditional Statements in the programming languages, however, all of them follow these principles.