The logical-operators tag has no wiki summary.
2
votes
9answers
543 views
Logical Operators in C
I am having trouble trying to understand how logical operators work in C. I already understand how the bit-level operators work, and I also know that logical operators treat nonzero arguments as ...
-6
votes
2answers
85 views
Working of Logical OR ( || ) in C?
I am a beginner C programmer.......... was working with Logical Operators recently.
The logical OR (||) is zero whenever both operands are zero. Or the working is somewhat different.
How does it ...
23
votes
8answers
5k views
0
votes
3answers
39 views
Logical operators, how are these evaluated?
I'm going through past papers to revise and there was a question that wasn't explained and I can't seem to find much online in regards to this question/topic.
Binary values
a = 00110011
b = 10101010
...
0
votes
0answers
57 views
Combine two Binary images
I have obtained two individual segmentations - initial and the one after splitting clumps of cells .
(Original image - Initial segmentation)
I'm stuck up now as I am unable to combine these two ...
-1
votes
2answers
60 views
Explanation about AND or OR operations in my C sharp code
I am trying to analyze some code in C#. I have some misunderstanding problem with converting numbers and may be with AND operations in C# code. I have the code as shown below.
public void ...
4
votes
3answers
245 views
why i^=j^=i^=j isn't equal to *i^=*j^=*i^=*j
In c , when there is variables (assume both as int) i less than j , we can use the equation
i^=j^=i^=j
to exchange the value of the two variables. For example, let int i = 3, j = 5; after computed ...
0
votes
3answers
35 views
How to have multiple 'and' logical operators and an 'or' logical operator
It is slightly hard to explain but I want to do something that looks like this:
if(a === 4 && b === true && c === "words" || "numbersandwords")DoSomething();
but it ends running ...
7
votes
5answers
100 views
precedence of ~ and ++ in java
consider this code snippet
int j = 7;
System.out.println(Integer.toBinaryString(j));
j = ~j++;
System.out.println(Integer.toBinaryString(j));
prints
111
11111111111111111111111111111000
what i ...
1
vote
1answer
58 views
Is BitArray faster in C# for getting a bit value than a simple conjuction with bitwise shift?
1). var bitValue = (byteValue & (1 << bitNumber)) != 0;
2). using System.Collections.BitArray with a Get( bitNumber ) method
What is faster?
In what situations for the .NET projects ...
1
vote
3answers
89 views
Boolean logic transformation rule explaining this switch to a Java ==?
I'm going through exercices on CodingBat. On this page there is this mention in the solution:
// The above can be shortened to:
// return ((aSmile && bSmile) || (!aSmile && ...
1
vote
2answers
46 views
Is there an implication logical operator in python?
I would like to write a statement in python with logical implication.
Something like:
if x => y:
do_sth()
Of course, I know I could use:
if (x and y) or not x:
do_sth()
But is there a ...
2
votes
3answers
102 views
Are there compilers capable of suggesting optimizations that would absolutely require programmer approval?
Can compilers do more than strict semantically-equivalent optimizations, if we keep the human in the loop?
There are some potential optimizations that are dismissed outright by compilers, because ...
-5
votes
3answers
50 views
Using Logical Operators in PHP if/else [closed]
Is it possible to use logical operators in the "then" part of the if/then statement in PHP?
This is my code:
if ($TMPL['duration'] == NULL) {
$TMPL['duration'] = ('120' or '124' or '114' or '138'); ...
1
vote
1answer
32 views
Assigning Values Using Logical Operators
I am trying to code weekends and weekdays using numeric values, such that "Monday","Tuesday",..."Friday" = 0 and "Saturday"/"Sunday" = 1. I presently have the following data:
head(bike.d)
...
-4
votes
5answers
85 views
Why isn't “k” incremented in the statement “m = ++i && ++j || ++k” when “++i&&++j” evaluates to true?
Aren't the individual expressions in a composite logical AND/OR expression supposed to be evaluated first before the logical operators are applied to their result?Why is ++k untouched in the ...
0
votes
0answers
38 views
“Combine” logical expression and return the subexpressions
I need to write an algorithm that takes a logical expression as input, combines its operators and returns the subexpressions.
Some examples of what I need:
foo -> ["foo"]
foo bar -> ...
1
vote
2answers
62 views
Logical operator (&&) not working locally in php
I'm still a beginner of php and I have come across a bit of a problem with the logical operator &&. I have a token and secret answer script which are both text boxes. When a user submits the ...
5
votes
3answers
764 views
In Ruby, should we always use “&&”, “||” instead of “and”, “or” unless for special situations? [closed]
Is it true that in most cases, in Ruby, it is best to use &&, || instead of and, or, unless it is some special situations.
I think one of Ruby's design principles is to have least surprises ...
19
votes
5answers
653 views
Confused by use of double logical not (!!) operator [duplicate]
I have some C++ code that makes extensive use of !!. I'm kinda baffled because as far as I know !! is not a operator on it's own but two ! after each other. So that would mean that !!foo is the same ...
4
votes
3answers
98 views
How logical negation operator “!” works
I am not trying to solve any particular problem, but trying to learn R and understand its logical negation operator "!" documented on page ...
1
vote
1answer
669 views
Operands to the and && operators must be convertible to logical scalar values
I have a simple problem that I'm looking for a fast implementation in Matlab. I have an array of values, let's say:
a = floor(rand(5,5).*255)
I then have a similarly sized threshold array, let's ...
1
vote
1answer
128 views
How to convert a QuadTree Cell's Spatial Index (Binary Index) to Position and Dimension values?
Sorry in advance for miss-using any terminology in this question, but basically I'm looking into creating a QuadTree that makes use of Binary Indexing, like this:
As you can see in the two ...
5
votes
2answers
173 views
What does '//' mean in Perl? [duplicate]
I was searching in a lot of Perl books but I can't find an answer. I have this code, what I suppose it does is assign param's ticket to $ticket iff it exists if not, assign 0.
my $ticket = ...
1
vote
1answer
34 views
Mixed increment operators with logical operators
I have a question concerning pre and post increments with logical operators
if I have this code
void main()
{int i = - 3 , j = 2 , k = 0 , m ;
m=++i||++j&&++k;
printf("%d %d %d ...
4
votes
3answers
2k views
Regex for “AND NOT” operation
I'm looking for a general regex construct to match everything in pattern x EXCEPT matches to pattern y. This is hard to explain both completely and concisely...see Material Nonimplication for a formal ...
1
vote
5answers
106 views
Is doing !(!a && b) any less efficient than a || !b?
I have a pathfinding algorithm which is run many times and must be extremely efficient, so I'm wondering what I can do to boost performance. I have an if statement which says this:
if (!(n != 1 ...
1
vote
0answers
48 views
Is it always true to presume that the logical and operator won't evaluate the second expression if the first one is false? [duplicate]
int* ptr;
//ptr may points to any location(e.g. nullptr)
if(ptr != nullptr && *ptr != 1) {
//A
} else {
//B
}
so are the above codes always equivalent to the following ones?
if(ptr != ...
0
votes
2answers
40 views
Long logical operator comparisons
I have three variables which determine an outcome. There is only two outcomes but the outcome is based on the variables. I have thought up some long if statements but I am wondering if there is a ...
0
votes
4answers
69 views
How to compute a mean of a specific column of a matrix, excluding a given value IN MATLAB
I have a 1000x7 matrix whose columns present some values equal to -99.
I want to compute the mean of each column separately because I'm building a table using fprintf, but I want the mean to be ...
0
votes
2answers
65 views
How/Can you use both && and || in the same if statement condition?
Which logical operator get "prioritized" or "read" ahead of the other, so to say.
For example:
if( x=y || y=y && x=x ){}
is java reading this as: One of these two: (x=y||y=y), AND (x=x)
...
0
votes
0answers
51 views
MS Excel - obtaining and presenting results by combining logical operators, sums, pivot tables, and forms
Before I present the question, I would like to state that I have spent time researching for a solution for this problem, with partial luck.
So, here's the scenario:
There are X number of users, using ...
0
votes
7answers
44 views
why using NULL with logical operator throws error in JS
This is the code I am testing --
Works fine
document.write( 1 && undefined ); // prints undefined
document.write( 1 && 3 ); // prints 3
document.write( 1 && true ); // ...
-1
votes
1answer
61 views
php IF OR format?
This works
If ($flag != 'u') { stuff.. }
This also works.
If ($id != 0) { stuff.. }
But these don't seem to work for me....
If ( ($flag != 'u') || ($id != 0) ) { stuff.. }
If ( ($flag != 'u') ...
0
votes
1answer
77 views
JSF char comparison does not work as expected
I have a JSF page which i control the renderer attribute according to managed bean property.
<p:commandLink action="#{smartphoneBean.drillDown(smartphone.ldapuser,smartphone.productGrp)}"
...
0
votes
3answers
88 views
Javascript Not (a==b) || Not (c==b)
I have been trying to get the following compare operator to work with no luck. The second 'if' always executes the next statement in the code. What I want is to be able to detect when eith entryType ...
4
votes
3answers
58 views
Logical operators - short vs long forms
I am getting a bit confused by the use of the short and long forms of logical operators in R.
If I have the following values
A <- FALSE
B <- TRUE
X <- 3
Y <- 2
I would like to evaluate ...
1
vote
3answers
86 views
PHP logical operators in IF statement
I have this code:
if ( ($oldTime < (time() - self::wait)) ) {
if ($this->setTime())
{
return true;
}
else
{
return false;
}
} else {
return false;
}
Can i replace it ...
23
votes
2answers
2k views
The written versions of the logical operators
This is the only place I've ever seen and, or and not listed as actual operators in C++. When I wrote up a test program in NetBeans, I got the red underlining as if there was a syntax error and ...
4
votes
6answers
139 views
do | and & make any sense in java?
Rarely I bump into & and | logic operators in other's codes instead of || and &&. I made a quick research because I never used them and didn't know what is it for.
A && B means if ...
0
votes
1answer
59 views
Logical precedence in Python
Helo everybody, i have a very noob question about python precedence. I have the following code:
def gcdIter(a, b):
ans = min(a,b)
while ((a%ans is not 0) and (b%ans is not 0)):
ans -= 1
...
2
votes
2answers
60 views
Apply logical and
I have an expression: (map some-proc some-list)
which evaluates to, say, '(#f #f #f).
I want to check whether all booleans in this list are true. However,
(and '(#f #f #f)) returns '(#f #f #f), ...
2
votes
5answers
163 views
How to compare if a char or string variable equals a certain string?
I'm trying to get this while loop to work but for some reason, it will automatically "assume" that the user input is wrong.
value is a string (should it be a char?)
A,B,C are strings (should they be ...
1
vote
3answers
194 views
Logical / Relational Expression Optimization
I need to optimize an expression of the form:
(a > b) || (a > c)
I tried several optimized forms one of which is as follows:
(a * 2) > (b + c)
Optimization is not from the compiler's ...
0
votes
4answers
120 views
division-by-zero error?
I've tried running this code:
int x = 0;
double y = 1/2;
if (y <= x || y/x < 1)
y++;
printf("%.2f", y);
The output is 1.00, which is kinda surprising to me. I thought the first expression (y ...
0
votes
2answers
455 views
Issue with examples of decision and statement coverage disadvantage
I'm studying the difference between these and cannot understand the difference. It seems the same to me.
Arent they the same? The risk is coming from short-circuiting, isnt it?
Statement coverage ...
2
votes
3answers
67 views
&& and 'and' are the same in php? [duplicate]
I tried the following code and got && and and are different.
<?php
$keyWord = 2 and 3>4;
$symbol = 2 && 3>4;
echo $keyWord===$symbol ? 'equal' : 'not-equal';
output: ...
0
votes
3answers
58 views
check if two objects are both undefined or null in javascript
I have a method hitTest that check for collision detection and can return a Point object (if a collision is happened) or (if there is no collision) it returns null or undefined (i haven't deeply ...
5
votes
5answers
3k views
Java Logcial Operators Short Circuiting
Which set is short-circuting,
And what exactly does that mean that the complex conditional expression is short-circuting?
public static void main(String[] args) {
int x, y, z;
x = 10;
y = 20;
...
3
votes
6answers
87 views
Logical OR operation with -1
Why is the output different for the following logical operations that I tried in python?
-1 or 1
1 or -1
First returns -1 and second returns 1






