answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Where does the word ''Boolean'' originate who was it named for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does the term boolean originate?

The term boolean comes from boolean algebra, which was invented by George Bool in 1854, and described in his work, "An Investigation of the Laws of Thought".


Where does the name boolean come from?

The term "Boolean" is derived from George Boole. en.wikipedia.org/wiki/George_Boole


Where does term boolean originate?

It is derived from the name George Boole who's work led to a field of study known as Boolean Logic.


Who discovered Boolean near rings in mathematics?

Boolean rings were named after George Boole (1815-1864).


Where did the word 'galvanize' originate?

It was named after Luigi Galvani, the Italian scientist.


Where does the word braille originate from?

Braille was named after the French founder of the written language, Louis Braille.


What is a math word that begins with b?

Boolean.


How did boolean operators get the name?

Boolean operators are named after a mathematician by the name of George Boole. He came up with the idea that all mathematical problems were either true or false.


What is the difference between a boolean search and a keyword search?

A keyword search searches for exact word when a boolean search looks for synonym's. The difference between a keyword search and a boolean search is the focus of the search. A keyword search is a search for an exact word. A boolean search is a search for a synonym.


Where did the word Boolean come from?

In 1851, English mathematician George Boole (1815 - 1864) was immortalized by having an abstract algebraic system named for him. His surname is a variant of "Bull".


Where did the word flip-flop originate?

It is an "onomatopoeic" ("onomatopoeia" = the formation of a word from a sound associated with what is named) name. When you walk in them the sound like "flip" "flop".


How do you get boolean value from string in java?

Here is some sample code to convert a string into a boolean: String word = "true"; boolean boo; if (word.equalsIgnoreCase("true")) boo=true; else boo=false;