Top "Boolean-expression" questions

A boolean expression is an expression in a programming language that produces a boolean value when evaluated, i.e. one of true or false.

K-map ( karnaugh map ) 8,4,-2,-1 to binary code conversion

I'm taking computer science courses and some digital design knowledge is required, so I'm taking digital design 101. Image above is …

boolean-expression karnaugh-map
Simplify boolean expression algorithm

Anybody knows of an algorithm to simplify boolean expressions? I remember the boolean algebra and Karnaught maps, but this is …

algorithm boolean-logic boolean boolean-expression
Boolean Algebra Simplification of (x'y'+z)'+z+xy+wz

How would you simplify the following? I'm having a bit of trouble with the first part with negation. How would …

boolean boolean-logic boolean-expression boolean-operations demorgans-law
Java boolean |= operator

Recently I saw a code using this: boolean val = something(); val |= somethingElse(); Interesting part is |= (binary like) operator made on …

java operators specifications boolean-expression compound-assignment
SSIS Conditional Split boolean result

In conditional split component, I need to know if Age equals -1 and am using following statement. However, there comes …

ssis split conditional boolean-expression
Bind Image.Source according to Boolean without a converter?

I want to have an image bound to a boolean and have the source of the image to depend on …

wpf binding conditional boolean-expression converters
Simplifying Boolean Expressions with DeMorgan’s law

I need help simplifying the following Boolean expressions using DeMorgan’s law: a) [ (AB)' + (CD)' ]' and b) [(…

boolean-expression demorgans-law
What is "!!" in C?

I have encountered the following snippet: pt->aa[!!(ts->flags & MASK)] = -val; What does !! (double exclamation marks/ …

c gcc boolean boolean-expression
Where might I find a method to convert an arbitrary boolean expression into conjunctive or disjunctive normal form?

I've written a little app that parses expressions into abstract syntax trees. Right now, I use a bunch of heuristics …

algorithm query-optimization boolean-expression
C language boolean expression return value

The C language does not have a Boolean datatype, using integers instead. Comparison operators such as == and <= return the …

c boolean-expression