Is 1 for TRUE or FALSE ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T19:50:11Zhttp://stackoverflow.com/feeds/question/329582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/329582/is-1-for-true-or-false12Is 1 for TRUE or FALSE ?CharlesChipy2008-11-30T23:20:31Z2009-09-09T04:29:33Z
<p>I always forget :S<br />
<strong>How do you remember which number stands for TRUE or FALSE?</strong></p>
<p><em>(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 …)</em></p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329586#3295862Answer by gbjbaanb for Is 1 for TRUE or FALSE ?gbjbaanb2008-11-30T23:22:56Z2008-11-30T23:22:56Z<p>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.</p>
<p>So, just remember 0 = false, or false is nothing.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329588#3295880Answer by Jimmy for Is 1 for TRUE or FALSE ?Jimmy2008-11-30T23:23:04Z2008-11-30T23:23:04Z<p>For most contexts, 0 is considered FALSE. Any non-zero value is considered TRUE, though 1 is most often used.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329590#3295904Answer by Rick for Is 1 for TRUE or FALSE ?Rick2008-11-30T23:24:10Z2008-11-30T23:24:10Z<p>I always remember that most languages are optimistic. So while only 0 = false, everything else = true.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329591#32959134Answer by Vilx- for Is 1 for TRUE or FALSE ?Vilx-2008-11-30T23:24:41Z2008-11-30T23:24:41Z<p>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).</p>
<p>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.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329592#3295920Answer by Darryl Hein for Is 1 for TRUE or FALSE ?Darryl Hein2008-11-30T23:27:25Z2008-11-30T23:27:25Z<p>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.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329615#3296153Answer by Sebastien for Is 1 for TRUE or FALSE ?Sebastien2008-11-30T23:43:15Z2008-11-30T23:43:15Z<p>In the Ruby programming language, 0 is not false, so beware if you start playing with it :)</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329635#32963513Answer by Tim Jarvis for Is 1 for TRUE or FALSE ?Tim Jarvis2008-11-30T23:56:39Z2008-11-30T23:56:39Z<p>True is True and False is False.</p>
<p>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)</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329653#32965311Answer by shoosh for Is 1 for TRUE or FALSE ?shoosh2008-12-01T00:06:45Z2008-12-01T00:06:45Z<p>My undergrad C professor had a nice way to remember this:<br />
<strong>"someone who lies (false) is a nobody (0)"</strong> </p>
<p>I guess it sounds better in the original language (Hebrew)</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329725#3297250Answer by rmeador for Is 1 for TRUE or FALSE ?rmeador2008-12-01T01:06:54Z2008-12-01T01:06:54Z<p>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). </p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329735#3297354Answer by Norman Ramsey for Is 1 for TRUE or FALSE ?Norman Ramsey2008-12-01T01:12:04Z2008-12-01T01:12:04Z<p>One of the nice things about C99 is that you can</p>
<pre>
#include <stdbool.h>
</pre>
<p>and get a predfined bool type as well as predefined true and false.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329824#3298240Answer by Jay Bazuzi for Is 1 for TRUE or FALSE ?Jay Bazuzi2008-12-01T01:58:09Z2008-12-01T01:58:09Z<p>It's context-specific, so there's no universal answer to this question. </p>
<p>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.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329944#32994438Answer by Paul Betts for Is 1 for TRUE or FALSE ?Paul Betts2008-12-01T03:22:00Z2008-12-01T03:22:00Z<p>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. </p>
<p>So, in summary, your question can be answered by "look it up for whatever you're doing" </p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/334072#3340720Answer by Thomas for Is 1 for TRUE or FALSE ?Thomas2008-12-02T14:20:58Z2008-12-02T14:20:58Z<p>Depends on the language, but let me give you a hint for Python.</p>
<p>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).</p>
<p>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?</p>
<p>It's false. false OR n = n, false AND n = false, for any n.</p>
<p>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.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/339419#3394190Answer by J.T. Hurley for Is 1 for TRUE or FALSE ?J.T. Hurley2008-12-04T02:14:28Z2008-12-04T02:14:28Z<p>Relative to Python:</p>
<p>I enjoy mathematics, so I'm fairly booked up on the mathematical idea that "zero is not a number."</p>
<p>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.</p>
<p>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).</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/339499#3394990Answer by meeps for Is 1 for TRUE or FALSE ?meeps2008-12-04T03:02:11Z2008-12-04T03:02:11Z<p>it only <strong><em>snows</em></strong> when its <strong>#FFFFFF</strong>reezing - makes it easy to remember in the northeast US. might not work so good at lower latitudes.</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/339523#3395230Answer by Michael Haren for Is 1 for TRUE or FALSE ?Michael Haren2008-12-04T03:21:55Z2008-12-04T03:21:55Z<p>I always think of the hex color codes as the amount of light coming out of the screen, in red, green, and blue components. 0 is no light and ff (255) is max light.</p>
<p>Thus:</p>
<ul>
<li>#000000 -> no light (black)</li>
<li>#ff0000 -> red</li>
<li>#00ff00 -> green</li>
<li>#0000ff -> blue</li>
</ul>
<p>You can then play around to get different shades, without pulling up a reference:</p>
<ul>
<li>#555 -> dark gray</li>
<li>#aaa -> gray</li>
<li>#ccc -> light gray</li>
<li>#faa -> lighter red</li>
</ul>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/339657#339657-1Answer by gsarnold for Is 1 for TRUE or FALSE ?gsarnold2008-12-04T05:22:47Z2008-12-04T05:22:47Z<p>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.</p>
<p>I have done this when I wasn't sure what integer value (1, -1, etc....) a new language used for TRUE (pseudocode):</p>
<pre><code>Let my_FALSE := 0
Let my_TRUE := not(my_FALSE)
Print my_TRUE, my_FALSE, not(not(my_FALSE))
</code></pre>
<p>In most cases if you got FALSE right, the first and third numbers will be the same.</p>
<p>A long time ago, some languages made it interesting to do stuff like this, but it doesn't always work.</p>
<pre><code>Let my_TRUE := (0 == 1 - 1)
Let my_FALSE := (1 == 5)
</code></pre>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/1397524#13975240Answer by Nader Shirazie for Is 1 for TRUE or FALSE ?Nader Shirazie2009-09-09T04:29:33Z2009-09-09T04:29:33Z<p>I always find the following is an IRC conversation useful:</p>
<blockquote>
<p>(morganj): 0 is false and 1 is true, correct?<br />
(alec_eso): 1, morganj<br />
(morganj): bastard.</p>
</blockquote>
<p>(from <a href="http://bash.org/?10958" rel="nofollow">bash.org</a>)</p>