Chapter 4- Mastering Decisions and Repitition Flashcards
ASCII value
American Standard Code for Information Interchange: Numerical representation of a character
Body of a loop
Statements to be executed with the loop is running (statements ‘inside’ the loop)
Boolean/logical data type
Stats type having only 2 possible values- true or false
Boolean condition/expression
Aka relational condition/expression. One or more variables and/or constants joined by relational operators. Result is a Boolean value (true or false)
Eg: iValue>25
sName<>’X’
Boolean/logical operator
Operator that is used to compare Boolean conditions/expressions and return a Boolean result
eg: AND; OR; NOT
Compound/Complex Boolean/Relational expression
2 or more Boolean conditions joined by logical operators.
Eg: (iValue>=10) AND (iValue<50)