up vote 76 down vote favorite
9
share [g+] share [fb]

I always forget :S

How do you remember which number stands for TRUE or FALSE?

(when I started css the colors black and white always confused me. Is white #FFFFFF or #000000. A trick I came up with: black is 0,because z0rr0 is dressed in …)

link|improve this question
17  
+1, everyone has to start somewhere. Cut him some slack. – Dean Nov 30 '08 at 23:52
why is this downvoted? – Johannes Schaub - litb Nov 30 '08 at 23:58
this is actually a nice question. +1 – shoosh Dec 1 '08 at 0:08
8  
Is 2 FileNotFound? – Andrew Grimm Mar 16 '10 at 6:36
7  
Actually black is zero, because it is considered to be comprised of no colors (like a black whole, there's nothing there, it doesn't reflect light), while white is considered to be comprised of the sum of all colors. upload.wikimedia.org/wikipedia/commons/2/28/… – slack3r May 12 '10 at 15:40
show 5 more comments
feedback

closed as not constructive by casperOne Nov 27 '11 at 17:28

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

24 Answers

It depends on who you ask - in Shell scripting, 0 is true and anything else indicates false. In C, 0 is false, and anything else is true. In Ruby, nil and false are false and everything else is true.

So, in summary, your question can be answered by "look it up for whatever you're doing"

link|improve this answer
5  
+1 because I didn't know that. – Dean Dec 1 '08 at 3:24
6  
+1 for showing examples, and pointing out the diversity in languages. I'm always suspicious of one-size-fits-all answers. – Ken Paul Dec 1 '08 at 4:01
1  
@Ken, +1 to you for voting up for the same reason I would – Nathan Fellman Dec 2 '08 at 10:21
7  
I thought I should note that in Bash, it really isn't true vs false, it is more error versus not error. – he_the_great Dec 2 '08 at 22:03
2  
And BASIC actually had 0 for false and −1 for true; stemming from that bitwise and boolean operators were the same :-) – Joey Oct 4 '10 at 11:29
show 3 more comments
feedback

I always find the following IRC conversation useful:

(morganj): 0 is false and 1 is true, correct?
(alec_eso): 1, morganj
(morganj): bastard.

(from bash.org)

link|improve this answer
4  
+1, I logged in only to vote this up! – Zaki Oct 3 '10 at 16:20
1  
(morganj): 0 is true and 1 is false, correct? (alec_eso): 0 – Kiddo Feb 15 '11 at 2:08
feedback

FALSE is 0 because there is nothing. TRUE is anything non-zero, because there is SOMETHING. (And, yes, TRUE is often defined as -1 in many languages; and generally anything non-0 is considered to be TRUE).

As for colors - 0 is black because (guess what) - there is nothing. It's dark. No photons coming out. #FFFFFF is white, because white contains all colors.

link|improve this answer
18  
Tell that a printer, where black contains all colors :-) – Joey Jan 18 '10 at 10:27
4  
@Joey: The old additive vs subtractive colour mixing problem again – Callum Rogers Oct 3 '10 at 20:21
feedback

True is True and False is False.

The representaion of those values as a number is simply an implementation detail that your language / compiler cares about. Its a fools game to start relying on or fiddling around with your languages implementation details for anything, including bool types (enums fit into this category as well)

link|improve this answer
No. This might be true for C, but not for many scripting languages the concept "truth value testing" is important and high-level like for Python: docs.python.org/library/stdtypes.html#truth-value-testing, for Perl: linuxtopia.org/Perl_Programming/pickingUpPerl_54.html, and also for Javascript, Ruby, shell script languages and many others. They have different positions on what counts as true and what as false. For example the number zero (0) usually is viewed as false, but Ruby is an exception, where zero counts as true. – nalply Oct 7 '11 at 22:31
feedback

My undergrad C professor had a nice way to remember this:
"someone who lies (false) is a nobody (0)"

I guess it sounds better in the original language (Hebrew)

link|improve this answer
1  
I guess it's weird. I had never even thought to justify this convention. I never really questioned it. – BobbyShaftoe Dec 12 '08 at 8:13
feedback

In the Ruby programming language, 0 is not false, so beware if you start playing with it :)

link|improve this answer
Really? What is false? – Shahin Dec 1 '08 at 0:13
false and nil are "false", everything else is "true" – Ferruccio Dec 1 '08 at 1:11
1  
@Ferruccio, that should be stated in the answer then. (@ you only because you could edit the question) – he_the_great Dec 4 '08 at 3:45
feedback

I always remember that most languages are optimistic. So while only 0 = false, everything else = true.

link|improve this answer
feedback

One of the nice things about C99 is that you can

#include <stdbool.h>

and get a predfined bool type as well as predefined true and false.

link|improve this answer
3  
STL is always a good idea. I don't want to see #define TRUE 1 again. – jim Dec 2 '08 at 10:18
feedback

it only snows when its #FFFFFFreezing - makes it easy to remember in the northeast US. might not work so good at lower latitudes.

link|improve this answer
feedback

The convention is always that 0 is false, anything else is true whether that be 1 = true, or -1 (ie the signed int 0xffffffff) = true.

So, just remember 0 = false, or false is nothing.

link|improve this answer
feedback

Imagine you have a wire. You are asking yourself: Is there a current flowing in the wire?

You go and measure the voltage. If the result is zero than there no current flowing (False). Otherwise there's a current flowing in the wire (True).

link|improve this answer
feedback

Another easy way to remember it is by the power button on some computers, especially olders ones: 0 means there is no power flowing/off because there is a gap; 1 means there is power flowing/on because there isn't a gap.

link|improve this answer
Or one might think of a transistor... – Chris Conway Dec 1 '08 at 3:52
feedback

It's context-specific, so there's no universal answer to this question.

In my opinion, the question doesn't even make sense: integers and booleans are different domains; there's no reason there should be a universal mapping between them. If you have a need for such a mapping, there's a problem in your programming model.

link|improve this answer
feedback

Depends on the language, but let me give you a hint for Python.

As you know, zero is identity for addition (n + 0 = n for any n) and zero element for multiplication (n x 0 = 0 for any n).

Now, you must realize that OR, AND and NOT are Boolean counterparts of "ordinary" algebraic operations, addition, multiplication and negation, respectively. But Boolean algebra doesn't have 0 - what value is identity for OR and zero for AND?

It's false. false OR n = n, false AND n = false, for any n.

Python extends this logic to collections as well, taking concatenation as the counterpart to addition (n + [] = n for any list n). So, empty strings, dictionaries and lists mean false as well. It's not the purest model, but it's pretty useful.

link|improve this answer
feedback

You could note that Lua is similar to ruby in wich nil and false are false and everything else is true.

link|improve this answer
feedback

For most contexts, 0 is considered FALSE. Any non-zero value is considered TRUE, though 1 is most often used.

link|improve this answer
1 is not most often used. You will fall into many traps thinging like that. ture == !false is a better way to think about it. – Loki Astari Dec 1 '08 at 1:36
feedback

I learned programming and digital logic at the same time, so the association has always been there for me. I can't say I've ever forgotten it. Remembering it as on/off may help. It probably also helps to learn boolean algebra, since it's basically just like normal algebra except 0 = false and 1 = true (also, no values are allowed to be any other number).

link|improve this answer
feedback

Relative to Python:

I enjoy mathematics, so I'm fairly booked up on the mathematical idea that "zero is not a number."

Ergo, I thought of it as "numbers" are true and "not a number" is false. Which simplifies into "is something there?" and then just becomes another programming convention.

To keep white and black separate in RGB values, I just pretend that the numbers are how much electricity I want to devote to that color, so #000000 translates to "leave it off" (black).

link|improve this answer
6  
>on the mathematical idea that "zero is not a number." Where does that come from? – recursive Sep 9 '09 at 4:52
feedback

In shell scripting, I wouldn't necessarily say that 0 = true, but rather that for most OS's, the execution of a program is expected to return an error status integer, which will be 0 if the program completed successfully, and a nonzero error code otherwise.

I have done this when I wasn't sure what integer value (1, -1, etc....) a new language used for TRUE (pseudocode):

Let my_FALSE := 0

Let my_TRUE := not(my_FALSE)

Print my_TRUE, my_FALSE, not(not(my_FALSE))

In most cases if you got FALSE right, the first and third numbers will be the same.

A long time ago, some languages made it interesting to do stuff like this, but it doesn't always work.

Let my_TRUE := (0 == 1 - 1)
Let my_FALSE := (1 == 5)
link|improve this answer
feedback

True and False are answers, so they require a question. 0 and 1 are numbers (yes, integers are numbers), so it's an amount. I guess the connection between 0/1 and true/false depends on what you ask those guys.

If you ask "Do you have something valuable ?" (which most languages seem to do), 1 would be True, since 0 is nothing.

But if you ask "Are you something specific ?", 0 would be True. It looks like it's the question Shell scripts asks to integers.

So to remember which one is true/false, remember the question the language asks to a number to compute it's boolean status.

link|improve this answer
feedback

In Informix 4GL, its different. And it is like this

If 1 is the value then it is True. If 0 is the value then it is False.

Many programming Languages, and it is difficult to remember :x

link|improve this answer
feedback

Electronics 0 false (off) 1 is true (ON) Bolean same as electronics Other than that its user choice noting solid there to hang on to.

link|improve this answer
feedback

My experience is that, with the majority of programming languages, any expression resulting in non-zero is true, which leaves only 0 (zero) as false. With javascript, true is -1, false is 0 (zero).

link|improve this answer
No. There are many values which count as true (for example the number 42 is also true), and there are also some values which count as false: undefined, null, false, 0, 0.0, NaN, "" (this list might not be exhaustive). – nalply Oct 7 '11 at 22:39
feedback

nothing is false, everything is true

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.