answersLogoWhite

0


Best Answer

BUT (apex)

User Avatar

Dillon Naillon

Lvl 6
4y ago
This answer is:
User Avatar
User Avatar

bastin

Lvl 1
2y ago
HAHAHAHHAHAHAha "BUT"
User Avatar

Katlynn Cooper

Lvl 1
2y ago
the awnser is “ NOT “
More answers
User Avatar

Wiki User

15y ago

A boolean operator is a keyword, such as AND, OR, NOT that can be used in most likely a search engine to find the results you want.

For instance, mp3 player -iPod will search for mp3 players other than iPod while a query like grand auto theft +review on Google News will show news stories that contain reviews of this popular video game.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Logic symbols used to specify the search rules; symbols are represented or implied by a space when entering search terms/requests; the most common operators are and, or and and not. if a series of terms to search is separated by a space, during the search, the operator symbol and is most often applied, and the search results will include findings inclusive of all words requested.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

These are the 5 boolean operators are

( )

NEAR

NOT

AND

OR

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Boolean operators include : AND OR NAND (Not AND) NOR (Not OR)

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

All Boolean operators are, are true or false statements.

This answer is:
User Avatar

User Avatar

Keya Maxwell

Lvl 5
7mo ago

NOT(apex)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an example of a boolean operator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

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


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

the answer to this question #19 is AND


What is building blocks of visual basic?

Hi, enum, global variable, local variables, constants, arrays, boolean operator are building blocks.


What is a Boolean condition?

A boolean is a value which can either be true or false. A boolean condition is mathematical equation where the result is a boolean (either true or false). Often used in programming.A boolean condition consists of some varibles, and boolean operations that can be carried out using them. Here are some boolean operations. The sybols are those used in Java and C++.> Greater Than. Returns true when the number before > is greater than the number after< Less Than. The opposite of Greater than== Equals. If the values are equal returns trueOR Returns true if the boolean before and/or the boolean after is true&& AND Returns true only if the boolean before AND after the && are true! NOT Inverts/NOT's a boolean. True becomes false. False becomes trueMost programming languages have booleans as a type of variable and if statements as control flow.An if statement uses a boolean to decide whether or not something is run eg.if(someBoolean){// If some boolean is true this peice of code will be run}A an example of a boolean condition could use a less than or greater than symbolif( someNumber > 9000 ) {print( "The number... it's.... OVER 9000!!" );}


What is the definition of boolean?

Exampe of Boolean and usage in the real word Operators Operator = Equal to != ^= Not equal to &lt; Less than Greater than &gt;= Greater than or equal to is null Value is null is not null Value is other than null like Value is an instance of pattern-matching string not like Value is not an instance of pattern-matching string Condition is a Boolean value (&quot;Petar&quot; === &quot;John&quot;) //This is false (&quot;Petar&quot; === &quot;Petar&quot;) This is true if (condition) { code to be executed if condition is true; }

Related questions

Is an example of a Boolean operator?

BUT (apex)


The definition of a boolean operator?

what is boolean operator


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 (&lt;) is an example of a Boolean operator.


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 &lt; 3) &amp;&amp; (b &gt; 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 &amp; 0xff) | (!b);


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 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


What are examples of a Boolean operator?

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


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


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

The answer is "and"


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.