Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

What is a Boolean operator

OpenStudy (malcolmmcswain):

Think of boolean operators as a Venn Diagram operators for your search terms. AND (i.e. example1 AND example2) AND brings together all the results from both of the search terms. |dw:1447342727625:dw| OR (i.e. example1 OR example2 OR example 3) OR is used like AND as a conjunction between 3 or more search terms. |dw:1447344353004:dw| NOT (i.e. example1 NOT badexample) NOT is used to exclude a search term. |dw:1447344491074:dw| If this helped, please medal! :D -Mal <3

OpenStudy (woodrow73):

``` var kittykeely_does_not_know_what_boolean_op_is = true; var kittykeely_asks_questions_at_openstudy = true; var kittykeely_asks_questions_on_the_street = false; if( kittykeely_does_not_know_what_boolean_op_is &&(AND) kittykeely_asks_questions_at_openstudy) { kittykeelyAsksQuestionAtOpenstudy(); } if( kittykeely_does_not_know_what_boolean_op_is &&(AND) kittykeely_asks_questions_on_the_street) { kittykeelyAsksQuestionOnTheStreet(); } var kittykeely_asks_question_somewhere = kittykeely_asks_questions_at_openstudy ||(OR) kittykeely_asks_questions_on_the_street; if(kittykeely_asks_question_somewhere ==(Equal To) true) { kittykeely_gets_replies(); } if(kittykeely_asks_question_somewhere !=(Not Equal To) true) { noreplies(); } ```

OpenStudy (woodrow73):

boolean operator - boolean is a true or false value; a 1 or 0. operator is something that performs a function on one or more operands - operands in this case being boolean values/variables. + - / * % are all operators, same with ==, !=, &&, || -- depending on your programming language.

OpenStudy (karlococ):

There are five Boolean operators that can be used to manipulate TRUE/FALSE values. These operators have the following meanings, where x and y represent values of TRUE or FALSE.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!