Conditionals: Difference between revisions
Mr. MacKenty (talk | contribs) |
Mr. MacKenty (talk | contribs) |
||
Line 19: | Line 19: | ||
* [https://computersciencewiki.org/index.php/Operators#Comaprison_operators Please see this link for conditional operators] | * [https://computersciencewiki.org/index.php/Operators#Comaprison_operators Please see this link for conditional operators] | ||
== | == Some videos == | ||
<html> | |||
<iframe width="560" height="315" src="https://www.youtube.com/embed/ZgB0Wp-fShk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | |||
</html> | |||
<html> | <html> | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/ | <iframe width="560" height="315" src="https://www.youtube.com/embed/D5fSbCKobko" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | ||
</html> | </html> | ||
Revision as of 08:15, 19 June 2019
A conditional statement evaluates an expression and executes instructions depending on the outcome of the evaluation. Conditionals depend on operators to evaluate if an expression is true or false. A condition and selection are not the same thing. A condition asks a question. A selection processes the answer.
With gratitude to and permission from Stephen Hughes (Coe College) and Philip East (University of Northern Iowa)[2], The list below is an example of types of conditional questions. You should start thinking about conditions in plain english before you start thinking about operators.
- Match
- Threshold
- Range
- One-of
- Not-match
- Not one of
- All of
- Some of
- Eligible
Conditional operators[edit]
Some videos[edit]