Tagged Questions
13
votes
11answers
2k views
In C++, why does true && true || false && false == true?
I'd like to know if someone knows the way a compiler would interpret the following code:
#include <iostream>
using namespace std;
int main() {
cout << (true && true || false ...
7
votes
4answers
1k views
Boolean expression order of evaluation in Java?
Suppose I have the following expression
String myString = getStringFromSomeExternalSource();
if (myString != null && myString.trim().length() != 0) {
...
}
Eclipse warns me that myString ...
5
votes
8answers
176 views
Not able to figure out the logical error in C program
A program that prints its input one word per line.
int main() {
int c;
while ((c=getchar()) != EOF) {
if (c== ' ' || c== '\n' ||c == '\t')
putchar('\n');
...
4
votes
2answers
472 views
Tool to refactor boolean expressions
I'm looking for a tool to refactor boolean expression. I've got expressions like
a1 => (b1 <=> c or d) AND
a2 => (b2 <=> c or d) AND
a2 => (b2 <=> c or d)
The tool ...
3
votes
4answers
2k views
Generating truth tables for logic expressions in Haskell
I completely forgot about my Haskell project which is due in a couple of hours, any help would be appreciated.
The first part is an evaluation function that has the following type signature:
...
3
votes
6answers
306 views
Is “boolean short circuiting” dictated by standard or just mostly used as optimization? [closed]
EDIT: Found duplicate once I learned the term for this behaviour. Close as duplicate please.
Consider this
Class* p = NULL;
if( p != NULL && p->Method() == OK ){
// stuff
}
On all ...
2
votes
2answers
163 views
How to understand De Morgan Laws Boolean Expression
I got screwed when trying to understand this expression. I've thought several times but I cant get the meaning.
! (p || q) is equivalent to !p && !q
For this one, somehow I can comprehend a ...
2
votes
4answers
787 views
Simplify boolean expression algorithm
Anybody knows of an algorithm to simplify boolean expressions?
I remember the boolean algebra and Karnaught maps, but this is meant for digital hardware where EVERITHING is boolean. I would like ...
2
votes
3answers
299 views
Can someone please help me with some basic boolean minimization?
Sorry to be annoying, but I am doing a little bit of work at the moment, and am trying to simplify the following piece of boolean algebra so that I can construct the circuit :
A'.B'.C.D + A'.B.C.D' ...
2
votes
5answers
363 views
Database model for saving random boolean expressions
I have expressions like this:
(cat OR cats OR kitten OR kitty) AND (dog OR dogs) NOT (pigeon OR firefly)
Anyone having idea how to make tables to save those?
Before I got request for usage of ...
2
votes
4answers
220 views
I cant really wrap my head around BOOLEAN logic when I use NOT together with AND and OR
Im trying to understand how boolean logic works when I use NOT. To give an example using awk
I have a text file containing
CORE
PORT
CORE
PORT
COREPORT
CORE
COREPORT
And I would like to remove ...
2
votes
4answers
627 views
Boolean expressions optimizations in Java
Consider the following method in Java:
public static boolean expensiveComputation() {
for (int i = 0; i < Integer.MAX_VALUE; ++i);
return false;
}
And the following main method:
public static ...
1
vote
1answer
165 views
Boolean Logic Design - Reduction
I have the following function to be reduced/simplified.
F(A,B,C,D) = BC + (A + C'D') where ' denotes the complement
Here's my solution:
= BC + (A + C'D')'
= BC + (A + (C+D)
= BC + (A + C + D)
= ...
1
vote
2answers
487 views
Digital Logic - truth tables
I am trying to solve these problems with truth tables using the formulas below. I am having a problem with the NOT to NAND
I think i got the first 2 problems correct using: AND is equivalent to NOR, ...
1
vote
4answers
509 views
boolean algebra - build a OR gate as an NAND gate
I am trying to wrap my mind around how to do this.
For what i understand is that a set of logic gates is called "functionally complete" if some combination of the gates can be used to do each of the ...
0
votes
2answers
198 views
Draw a circuit realization of the exclusive OR function (XOR) with two inputs. You may use AND, OR and NOT gates [closed]
I am trying to figure out a way of doing this without simply learning all the gates, how would you work this out? I am familiar with boolean algebra and drawing circuits, just not how to work out a ...
0
votes
0answers
113 views
Constructing logic gates from only AND, OR and NOT gates
I am doing some revision for my exams and one of the questions that frequently occurs is to construct logic gates using only the functions AND, OR and NOT. The most commonly occurring ones are NAND, ...
0
votes
2answers
134 views
Boolean algebra - Finding an item exists or not?
I have the following items
Apple= 00000001 (1)
Mango= 00000010 (2)
Banana= 00000100 (4)
Grapes= 00001000 (8)
Now I am storing the fruits a user can have like this by doing or'd
...
-1
votes
1answer
35 views
XSLT 1.0 boolean condition not working properly
I use some XSLT to render a variety of elements from a XML sheet, but only if one of the values in their properties are set as true
<xsl:variable name="showInIndex" select="true()"/>
...