Examples of using Boolean expression in English and their translations into Vietnamese
{-}
- 
                        Colloquial
                    
 - 
                        Ecclesiastic
                    
 - 
                        Computer
                    
 
A Boolean expression in C, if you.
Represents a condition(boolean expression).
Well, the boolean expression is evaluated.
While loop, flow of control immediately jumps to the boolean expression.
Unless both boolean expressions are true.
Boolean expressions are often used in conditional expressions. .
Unless both boolean expressions are true.
The word if, two parentheses,inside of which is going to be some kind of Boolean expression.
The Boolean expression is used to evaluate conditions.
In a while loop or do/while loop,control immediately jumps to the Boolean expression.
The boolean expression after if is called the condition.
Furthermore, every possible input-outputbehavior can be modeled by a suitable Boolean expression.
Once the boolean expression is false, the for loop terminates.
In this case it is written out in a sentence first,and then converted to a Boolean expression.
The boolean expression after the if statement is called the condition.
An if statement can be followed by an optional else statement,which executes when the boolean expression is false.
SQL Boolean Expressions fetch the data on the basis of matching single value.
The return type is boolean, which means that every return statement has to provide a boolean expression.
Condition coverage: All boolean expressions to be evaluated for true and false.
Comparisons may be combined using the Boolean  operators and and or,and the outcome of a comparison(or of any other Boolean expression) may be negated with not.
The boolean expression in a conditional statement that determines which branch is executed.
Strictly speaking, the operands of the logical operators should be boolean expressions, but Python is not very strict.
When executing, if the boolean_expression result is true, then the actions inside the loop will be executed.
It provides capability to perform full text searches for materials with OCR andlimited capability for boolean expressions(for example it is possible to do fulltext search for"Jan Kowalski").
During executing, if the boolean_expression result is true, then the statements inside the loop will be executed.
For problems involving more than six variables, solving the boolean expressions is more preferred than the Karnaugh map.
Notice that the Boolean expression appears at the end of the loop, so the statements in the loop execute once before the Boolean  is tested.
An if statement consists of a boolean expression(condition) followed by one or more statements.
A Boolean expression in C, if you wanted to say if this condition is true and this other condition is true, you don't write the word and, as you would in English.
These if statements always set the commission rate to 0% because the boolean expression in the first if statement always tests true(assuming the salesTotal isn't zero or negative- and if it is, none of the other if statements matter).