_____________is a logical operator
Answers
A logical operator is a symbol or word used to connect two or more expressions such that the value of the compound expression produced depends only on that of the original expressions and on the meaning of the operator. Common logical operators include AND, OR, and NOT.
True: false
False: true
( : ..Hope Helpzzz Someone.. : )
Answer:
A logical operator is a symbol or word used to connect two or more expressions such that the value of the compound expression produced depends only on that of the original expressions and on the meaning of the operator. Common logical operators include AND, OR, and NOT.
Explanation:
The AND && operator does the following:
1.Evaluates operands from left to right.
2.For each operand, converts it to a boolean. If the result is false , stops and returns the original value of that operand.
3.If all operands have been evaluated (i.e. all were truthy), returns the last operand.
For example, a && b returns true when both a and b are true (i.e. non-zero). Logical OR operator: The '||' operator returns true even if one (or both) of the conditions under consideration is satisfied. Otherwise it returns false. For example, a || b returns true if one of a or b or both are true (i.e. non-zero).
There are five logical operator symbols: tilde, dot, wedge, horseshoe, and triple bar.