answersLogoWhite

0


Best Answer

Boolean is just true or false.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is boolean based language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

What is a Boolean condition?

A boolean is a value which can either be true or false. A boolean condition is mathematical equation where the result is a boolean (either true or false). Often used in programming.A boolean condition consists of some varibles, and boolean operations that can be carried out using them. Here are some boolean operations. The sybols are those used in Java and C++.> Greater Than. Returns true when the number before > is greater than the number after< Less Than. The opposite of Greater than== Equals. If the values are equal returns trueOR Returns true if the boolean before and/or the boolean after is true&& AND Returns true only if the boolean before AND after the && are true! NOT Inverts/NOT's a boolean. True becomes false. False becomes trueMost programming languages have booleans as a type of variable and if statements as control flow.An if statement uses a boolean to decide whether or not something is run eg.if(someBoolean){// If some boolean is true this peice of code will be run}A an example of a boolean condition could use a less than or greater than symbolif( someNumber > 9000 ) {print( "The number... it's.... OVER 9000!!" );}


What is the Boolean operator that is appropriate to use?

Boolean is a type, not an operator and can have the value of either TRUE or FALSE


Write a narrow Boolean search for pages about pet boxers?

Write a narrow boolean search for pages about pet boxers.


Who invented boolean logic?

George Boole


Can you use boolean search terms in any of the available internet search engines?

Avasearch.com announced that they will create a search engine to be used only for boolean search terms.

Related questions

What is boolean alzebra?

If you mean boolean algebra, in mathematics it refers to the subarea of algebra. In boolean algebra the values of the variables are based on true and false (truth values), denoted as 0 and 1 respectively.


Are Boolean expressions are used to make decisions in a high-level language?

Yes.


What is the boolean algebra?

It is a system of logical calculus on which logic axioms are based on.


What are four Boolean operators?

Depends on the computer language, the Boolean operators may have different looks, but all the basic ones should be in place:Equality (Equals(), ==, IsTrue, IsFalse), to compare 2 boolean valuesNot (~, !, .NOT. ), negation or compliment. That is, !True TrueAnd (&, &&, .AND.), the intersection.Or (|, , .OR.), the union


What is Boolean operator in c language?

A Boolean operator is any operator that returns true or false. False is typically denoted by the integer value 0 while all non-zero values equate to true. The less-than operator (&lt;) is an example of a Boolean operator.


What does ! mean in java?

That's the boolean "or" operator. It calculates a result based on two boolean values. The result is false if both starting values are false; in all other cases, the result is true.


What does the or mean in java?

That's the boolean "or" operator. It calculates a result based on two boolean values. The result is false if both starting values are false; in all other cases, the result is true.


Which boolean operation is referred to as a boolean product?

AND operation is referred as a boolean product


If Eat Hamburger?

AND boolean


Are computers based on boolean algebra?

Very deep in the computer, yes. The 3rd+ level programming languages, no.


Does HTML allow you to declare integer real string and boolean variables?

HTML is not a programming language and as such does not allow you to declare variables.


Explain why Boolean logic is so important for computers?

Because computers uses binary as its language. And programs are representation of logic.