Boolean Algebra | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Boolean Algebra

What is the meaning from learning Boolean Algebra? Is it important? So I can put more attention on learning it

5th Sep 2021, 1:28 PM
raonMiru
raonMiru - avatar
4 Answers
+ 5
Yeah you must! It's pretty important. I usually face it when working with multiple boolean flags in code. Let me give you a scenario that programmers often come across. There is this save button in a form and there are two boolean flags. Boolean: complete Boolean: correct. Now the form's save button will be disabled if form is not correct or not complete. I was puzzled when I saw that same condition can be represented two ways. Boolean: Disabled = !complete || !correct Is also same as Boolean: Disabled = !(complete && correct) So if we are not familiar with De-Morgan law and basic AND OR operations then we will trip up a lot. Boolean algebra is a very simple topic and programmers don't need to go that deep but programmers having awesome boolean algebra knowledge writes super performant codes. For electronic engineers who design circuit boards will have to understand everything there is to know about Boolean algebra. That's why it's often a dedicated topic in electronics courses.
5th Sep 2021, 1:43 PM
Morpheus
Morpheus - avatar
+ 4
Practicing boolean logics in Truth table is the ultimate way to practice boolean algebra.
5th Sep 2021, 1:45 PM
Morpheus
Morpheus - avatar
+ 2
Morpheus Thank you so much! I'll make sure to focus on learning it.
5th Sep 2021, 1:57 PM
raonMiru
raonMiru - avatar
+ 1
Martin Taylor Thank youu!!
5th Sep 2021, 5:06 PM
raonMiru
raonMiru - avatar