answersLogoWhite

0


Best Answer

And, or, not, xor, nand, nor. There are a few others, too.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

6y ago

The three basic Boolean operators are OR, AND and NOT.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are examples of a Boolean operator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

The definition of a boolean operator?

what is boolean operator


What is the Boolean operator that is appropriate to use?

Boolean is a type, not an operator and can have the value of either TRUE or FALSE


What logical operator is used to reverse the boolean operator?

NOT


What is Boolean operator in c language?

A Boolean operator is any operator that returns true or false. False is typically denoted by the integer value 0 while all non-zero values equate to true. The less-than operator (<) is an example of a Boolean operator.


Is an example of a Boolean operator?

BUT (apex)


What java operator reverses the truth or falsity of a condition?

The ! (boolean invert) operator returns the opposite of a boolean's current value: if(!(7 5," and the statement produces this output: not equal


Which Boolean operator is used when a search is limited to All of the words?

and


Which term or phrase may not be used as a Boolean operator?

not shouldn't be used


What is the difference between bit wise operator and logic operator?

The logic operator provides boolean results of combinations of other boolean expression, some of which might be relational expressions. For example... bool result = (a < 3) && (b > 4); The bitwise operator provides the same kind of boolean logic, AND, OR, and NOT, but it does it to the correspondingly ranks bits in one or two integers. For example ... int result = (a & 0xff) | (!b);


Which Boolean operator limits your search so that each term you input must be in the?

The answer is "and"


What is a boolean operation?

A boolean operator is a simple word such as and, or, or not which are used to narrow or expand searches. Boolean operators are also used in programming to determine a path of action often depending on the status of a variable.


You use the operator to reverse the meaning of a Boolean expression?

The NOT operator. E.g., NOT TRUE evaluates to FALSE while NOT FALSE evaluates to TRUE.