Difference between revisions of "False"

From SCAR Divi Manual
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
 
False is one of 2 possible [[boolean]] values which is predefined in the [http://en.wikipedia.org/wiki/Pascal_%28programming_language%29 Pascal] language. The value bit-value 0 is also associated with this constant and it is used for [http://en.wikipedia.org/wiki/Boolean_algebra_%28logic%29 boolean logic].
 
False is one of 2 possible [[boolean]] values which is predefined in the [http://en.wikipedia.org/wiki/Pascal_%28programming_language%29 Pascal] language. The value bit-value 0 is also associated with this constant and it is used for [http://en.wikipedia.org/wiki/Boolean_algebra_%28logic%29 boolean logic].
  
The value False equals "not [[True]]" and is used to indicate that a statement is false.
+
The value False indicates that a statement is not valid.
  
 
==See Also==
 
==See Also==
 
*[[True]]
 
*[[True]]
 
[[Category:Constants]]
 
[[Category:Boolean Constants]]
 

Latest revision as of 20:05, 26 June 2011

Description

False is one of 2 possible boolean values which is predefined in the Pascal language. The value bit-value 0 is also associated with this constant and it is used for boolean logic.

The value False indicates that a statement is not valid.

See Also