English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

i understand that they are used in search engines asking specifics

2007-03-06 23:15:54 · 3 answers · asked by razorbac6 1 in Education & Reference Homework Help

i understand that they are used in maths but they are also used in search engines defining searchs e.g. AND, NOT, OR, FOLLOWED BY, NEAR, these are known as boolean operators, are the expressions the actual words or the sentances used with these words

2007-03-06 23:31:49 · update #1

3 answers

A boolean expression is a statement that evaluates to TRUE or FALSE. Generally, these use what are called "relational" operators that test an assertion to be true or false, for example:

4 > 3 = TRUE
5 < 4 = FALSE

Boolean expressions are in contrast to arithmetic expressions such as:

4 + 3 = 7
5 - 4 = 1

What you're thinking of are logical operators such as "AND" and "OR", which also are used in boolean expressions, as in:

( 4 > 3 ) AND ( 5 > 3 ) = TRUE
(4 > 3 ) OR ( 5 < 3 ) = TRUE

Where AND means both sides must be TRUE for the entire statement to be true, and OR means that either side must be TRUE for the statement to be true.

2007-03-06 23:25:35 · answer #1 · answered by trentrockport 5 · 0 0

Boolean logic is the manipulation of boolean variables, a boolean variable can be either TRUE or FALSE.

A boolean expression is like an algebraic expression (formula), but the variables (A, B, X etc.) in algebra have numeric values, in a boolean expression the variables can only have TRUE or FALSE as values.

An alternative description for boolean would be "binary" and/or "logic" operators in boolean expressions are the same as gates in binary circuits. NOT reverses the value others are AND (both values being true, yields true) and OR (one or both values being true, yields true) NAND and NOR are AND and OR with the output reversed.

2007-03-06 23:39:11 · answer #2 · answered by David W 1 · 0 0

TRUE or FALSE

2007-03-06 23:19:00 · answer #3 · answered by Rajni 2 · 0 0

fedest.com, questions and answers