2 Answered Questions
[SOLVED] Why does `a == b or c or d` always evaluate to True?
- 2013-11-15 13:45:34
- Kevin
- 17904 View
- 97 Score
- 2 Answer
- Tags: python boolean boolean-expression
6 Answered Questions
6 Answered Questions
[SOLVED] Is False == 0 and True == 1 an implementation detail or is it guaranteed by the language?
- 2010-05-04 09:03:30
- Eric O Lebigot
- 228054 View
- 231 Score
- 6 Answer
- Tags: python boolean equality language-specifications
3 Answered Questions
9 Answered Questions
[SOLVED] What are bitwise operators?
- 2008-11-09 23:59:26
- click
- 19811 View
- 128 Score
- 9 Answer
- Tags: javascript boolean bitwise-operators boolean-logic
12 Answered Questions
[SOLVED] Which MySQL data type to use for storing boolean values
- 2008-11-14 10:36:18
- Beat
- 826690 View
- 1172 Score
- 12 Answer
- Tags: mysql boolean sqldatatypes
2 Answered Questions
13 Answered Questions
[SOLVED] What is the difference between & and && in Java?
- 2011-04-06 09:46:55
- Lavneesh
- 164152 View
- 158 Score
- 13 Answer
- Tags: java operators boolean bitwise-operators
1 Answered Questions
11 Answered Questions
[SOLVED] In JavaScript, why is "0" equal to false, but when tested by 'if' it is not false by itself?
- 2011-09-30 19:34:41
- nopole
- 162312 View
- 224 Score
- 11 Answer
- Tags: javascript boolean
11 Answered Questions
[SOLVED] Is bool a native C type?
- 2009-10-22 16:11:54
- asussex
- 307953 View
- 249 Score
- 11 Answer
- Tags: c gcc linux-kernel boolean
14 Answered Questions
16 Answered Questions
13 Answered Questions
4 Answered Questions
[SOLVED] Is sizeof(bool) defined in the C++ language standard?
- 2011-02-04 12:15:30
- 0xbadf00d
- 61612 View
- 107 Score
- 4 Answer
- Tags: c++ boolean sizeof implementation-defined-behavior
10 Answered Questions
[SOLVED] Objective-C : BOOL vs bool
- 2009-02-12 13:46:05
- Francescu
- 177347 View
- 188 Score
- 10 Answer
- Tags: c objective-c types boolean
8 Answered Questions
7 Answered Questions
8 Answered Questions
3 Answered Questions
5 Answered Questions
10 Answered Questions
[SOLVED] Volatile boolean vs AtomicBoolean
- 2010-09-24 12:01:23
- JeffV
- 91995 View
- 225 Score
- 10 Answer
- Tags: java concurrency boolean volatile atomicboolean
7 Answered Questions
4 Answered Questions
15 Answered Questions
[SOLVED] Parsing boolean values with argparse
- 2013-02-21 17:37:16
- SuperElectric
- 326400 View
- 536 Score
- 15 Answer
- Tags: python boolean argparse command-line-parsing
8 Answered Questions
9 Answered Questions
[SOLVED] Is there a difference between YES/NO,TRUE/FALSE and true/false in objective-c?
- 2009-03-05 17:09:55
- Kevlar
- 81241 View
- 150 Score
- 9 Answer
- Tags: objective-c boolean
4 Answered Questions
[SOLVED] Booleans, conditional operators and autoboxing
- 2010-10-07 13:28:51
- BalusC
- 18177 View
- 128 Score
- 4 Answer
- Tags: java nullpointerexception boolean conditional-operator autoboxing
14 Answered Questions
[SOLVED] Is it bad to explicitly compare against boolean constants e.g. if (b == false) in Java?
- 2010-04-18 04:15:03
- polygenelubricants
- 24426 View
- 72 Score
- 14 Answer
- Tags: java coding-style boolean