What are the if else operator? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What are the if else operator?

4th Jan 2017, 4:28 PM
Raquib
Raquib - avatar
2 Answers
0
In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false. Apart from the case of branch predication, this is always achieved by selectively altering the control flow based on some condition. In imperative programming languages, the term "conditional statement" is usually used, whereas in functional programming, the terms "conditional expression" or "conditional construct" are preferred, because these terms all have distinct meanings.
4th Jan 2017, 4:31 PM
Alikhan Suleimen
Alikhan Suleimen - avatar
0
found it if ? else:
4th Jan 2017, 9:09 PM
Raquib
Raquib - avatar