Boolean logic

Prince25

New member
Boolean logic is a type of decision making utilized by computers to decide if a statement is true or false. Computer works with this logic to compute and display results.
 
Boolean logic is a form of algebra in which all values are reduced to either TRUE or FALSE. Boolean logic is especially important for computer science because it fits nicely with the binary numbering system, in which each bit has a value of either 1 or 0. Another way of looking at it is that each bit has a value of either TRUE or FALSE.
 
I have learnt Boolean algebra in mathematics during my graduation. I only approached Boolean Algebra theoretically. I never thought about Boolean practically.
 
Boolean Logic is True and False set of the value is 0 and 1. There are many differentiation of the Boolean logic. This is used in logic gates OR gates, And Gates Nor gates,
And operation
a b =c
0 0 =0
0 1 =0
1 1 =1
1 0 =0
 
Boolean searches can also be applied in searching the web by using the operators AND, OR, NOT. Using the AND operator makes sure all the terms appear on the search results, example, Macaroni AND Cheese. The OR operator retrieves results that contains either or more terms. The NOT operator ensure that certain phrase or words won't appear on the search results.
 
Back
Top