The tag has no wiki summary.

learn more… | top users | synonyms

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 && ...
0
votes
3answers
33 views

Amount of logical combinations

My brain seems to be stoped, and I am looking for a help. I have the following variables: $start_t = 1; $start_n = 2; $end_t = 6; $end_n = 5; and I like to check all the logical combinations ...
1
vote
2answers
117 views

Replace && and || in c++ with AND and OR [duplicate]

Possible Duplicate: C++ and,or,not,xor keywords I think the title says it, but to expand a little: Is there a way to replace the && and || operators in your code with "AND" and ...
5
votes
5answers
171 views

What's the difference between | and || in MATLAB?

What is the difference between the | and || logical operators in MATLAB?
4
votes
5answers
611 views

Why is there a distinction between logical and bitwise operators in Java and C#?

Languages like i.e. Java and C# have both bitwise and logical operators. Logical operators make only sense with boolean operands, bitwise operators work with integer types as well. Since C had no ...
2
votes
5answers
189 views

Bitwise operations on strings - 1440 characters length

How can i make bitwise operations on strings at c# example string sr1="0101110"; string sr2="1101110"; sr1 & sr2="0101110"; or sr1 | sr2="1101110"; How can i make such comparison ? ...
0
votes
2answers
103 views

use of && and | operators together in a expression

cond && cond op cond op can be && or || Qn- For short circuit (&&) operator if the first cond is false then right part (whole) is not evaluated or just the second cond ...
9
votes
6answers
480 views

Checking the “boolean” result of an “int” type

I'm learning java, coming from C and I found an interesting difference between languages with the boolean type. In C there is no bool/ean so we need to use numeric types to repersent boolean logic (0 ...
0
votes
2answers
69 views

Logical or instead of ternary

I've a legacy script. This is a part from it: var e = e? e : event; So, nothing wrong here. But I use ternary mainly for toogling. Can it safely be rewritten like this var e = ( e || event ); Is ...
0
votes
3answers
109 views

C: char logical operator not working

Using the code sscanf(argv[1], "%d", &num1); sscanf(argv[2], "%c", &op); sscanf(argv[3], "%d", &num2); if ((op != '-')||(op != '*')||(op != '/')||(op != '+')) { ...
-1
votes
2answers
87 views

&& || operator interaction

I need to know how the logical AND an OR operators are evaluated in a statement. I have found a few sites that try to explain it but I can't make heads nor tails of them. I know I can use braces to ...
0
votes
2answers
369 views

Implementing assembly logical 'not' instruction

So I have run into a problem in assembly language. I need a way to get the same desired result from the 'not' instruction by only using the 'and' and 'or' instructions. So if I have: AL = 1011000 ...
4
votes
1answer
852 views

How to use numpy.where with logical operators

I'm trying to find the indices of all elements in an array that are greater than a but less than b. It's probably just a problem with my syntax but this doesn't work: numpy.where((my_array > a) ...
5
votes
1answer
152 views

Regarding optimization for 'not a statment' in c?

While Learning compiler Optimisation, I write codes in C under Linux with GCC version gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5.1) To understant not a statement (nop) in C. I written two codes ...
6
votes
2answers
42 views

Name for the logical operator A & (~B)

Is there a name for logical AND with the negation (~) of the second variable, i.e: A & (~B) The truth table for such operation is: 0 & (~0) = 0 0 & (~1) = 0 1 & (~0) = 1 1 & ...
2
votes
1answer
224 views

Does javascript regexp (|) pipe operator works same as the (||) logical operator?

I know that the regexp OR (|) operator in javascript matches if one of the sub-strings on both sides of the regexp is matched. I also know that in JavaScript the logical (||) OR operator checks the ...
0
votes
1answer
32 views

Are these two identical, or is one better/safer than the other?

I'm afraid that refinement on a match of a user-input string will result in an error, since matching with a regex that has the g flag set and doesn't match the string will return null, which is ...
3
votes
5answers
323 views

Java Logical 'AND' vs 'OR' Short-Circuiting Consistency [duplicate]

Possible Duplicate: Difference in & and && I've read several tutorials and answer regarding short circuit operations in java and I'm still not quite understanding the difference ...
1
vote
2answers
107 views

Using logical operators on loops results in contradiction

I'm dealing with a really, really weird issue in JavaScript. I'm working on a validator script that loops through a list of fields with jQuery. Each validation is tied to a regular expression on an ...
3
votes
1answer
100 views

Starting to write a logical expression evaluator [closed]

I want to develop a logical expression evaluator to compute applicability of certain logical expression against a particular expression. For example, An expression could be of the form (A AND B) ...
2
votes
5answers
146 views

Determine the parity of a number using only logical operators

I am a little bit confused while I'm trying to determine if a number is even / uneven using only logical operators (||, &&). I'm used to: if (x%2) printf("Number is even"); else ...
1
vote
2answers
192 views

Using && in EL results in error: The entity name must immediately follow the '&' in the entity reference

I'm trying to use a conditional expression in an el expression used in jsf, but it does not work. <h:outputText value="#{(sel.description !=null) && (sel.description !='') ? ...
3
votes
2answers
257 views

Logical Operators and their precedence in C/C++

I was recently came across a piece of code // Program to overcome division by zero int a=0; int b=100; int c= a==0 || b/a ; printf("Hello"); //Output : Hello My theory: According to the ...
1
vote
2answers
75 views

slightly complex matching condition

The code below represents what I am trying to write. The requirement is that the tax profile should match the correct currency. I have written the if conditions in my code below. However there are ...
2
votes
3answers
59 views

Is !$festive the same as $festive==FALSE?

I have a doubt with a few lines of PHP. I have the following code: // returns TRUE if a day is festive, FALSE otherwise $festive = isFestive(); // $workingDay = $d>0 && !$festive; Is ...
0
votes
2answers
987 views

using logical and in unix shell script for switch case

Is it possible to use a logical AND in a unix shell script switch case. If so, how? switch $var in 1 AND $var2 EQUALS 2) some code
0
votes
1answer
131 views

Combine Logical Operators [closed]

I'm quite new to R and I have a simple question I just can't figure out a simple problem. I want to combine two logical Statements i.e. I want to exclude two Columns from my analysis To exclude only ...
0
votes
1answer
41 views

&& in drop event

I am trying to trigger a drop event only on condition that all draggables are dropped. drop: function(event,ui){ var dropd = "#"+ui.draggable.attr("id"); if("#a_dra" ...
3
votes
1answer
94 views

Bitwise operations evaluating to long

I've been converting some Java code to C# and ran into a little pickle. All the documentation on MSDN suggests that all bitwise operations return the type that is being operated on. See: ...
0
votes
5answers
105 views

Completing all function calls in a logical AND chain in C++ [duplicate]

Possible Duplicate: Is there an Non-Short circuited logical “and” in C++? C++ logical & operator I have code similar to this: return ( check1() && check2() && ...
-1
votes
3answers
107 views

Do all logical OR separated checks in an if get processed prior to execution of the code within?

Suppose I had an if statement in a method like so: if ( foo() || bar() ) { return true; } Would both foo() and bar() both be processed entirely before assessing whether to execute the code ...
0
votes
4answers
165 views

Using flags with logical operators instead of conditional statements (Such as if())

Suppose I want to change the value of a variable when a flag is set. An obvious method is the following. int a = 1, b = 2; if(Flag) { a=b; Flag = false; } This, however, is quite ...
1
vote
3answers
85 views

r logical condition for “any of” opperation

This is probably a very basic R question...and feel a bit bad about asking...but is there a bit of code like == or | or ! or & etc that carries out the following logical function? if x == any of ...
1
vote
3answers
674 views

Checking even or odd `1` bits in a number

I want to check if number has all even or odd bits set to one and only them. For eg.: Number 42 is correct, because in a binary code 101010 it has all and only even bits sets to 1. Number 21 is also ...
1
vote
2answers
152 views

Logical operator PHP variable equals A or B or C, it dose not evaluate as either of them

I am currently using ftp_rawlist to output every file and folder including subfolders in the root directory of a remote site. The output of the files in the array include the permissions, the user etc ...
4
votes
3answers
178 views

Parentheses and logical operators

consider this code (C++) : int x = -4 , y = 5 ; bool result = x > 0 && y++ < 10 ; the expression (x > 0) will be evaluated first , and because (x > 0 = false) and due to short-circuit ...
0
votes
6answers
90 views

Self logical and?

The answer may be obvious for some of you, but as I can't find the answer, I need to ask it. Oftenly, if a function has to return whether all was executed without problems, I use a boolean that track ...
0
votes
6answers
87 views

Can I use logical OR || in PHP variable declaractions?

This code works: $foo = getFoo(); if (!$foo) $foo = getBar(); if (!$foo) $foo = getJiggy(); if (!$foo) $foo = getWithIt(); I thought I'd seen somewhere a simplification of it with logical ...
-2
votes
2answers
51 views

Just wanted to know all the uses of || operator in javascript

I just wanted to know the other uses of || operator in javascript rather than just logical OR ! Thanks :)
-1
votes
2answers
96 views

If either one of both equals

have start and end dates which are stored in a database in this format: start date= 20121004 //4th October 2012 end date= 20121004 //16th November 2012 so I can use date format: $date = ...
0
votes
2answers
84 views

Please help me understand: <textarea> onkey=Javascript

Please help me understand this line: <textarea onkeyup='this.rows = (this.value.split("\n").length||1);' style="overflow-y: hidden;"></textarea> I understand most of this line, but there ...
3
votes
4answers
104 views

Require explanation for the output

Code: #include<stdio.h> int main() { int j = 7, i = 4; j = j || ++i && printf("you can"); printf("%d %d",i,j); return 0; } Output: 4 1 Code Link The precedence of ...
-1
votes
2answers
114 views

how to store the logical relationship

I want to figure out a solution for automatic logical relationship check. For example, I have a function IsGood(), it will get the bool value from a, b, c .... In the main program, there is if(a||b) ...
0
votes
2answers
75 views

matching elements using OR with regex in python

i m using regex in python to extract data from html. the regex that i ve written is like this: result = re.findall(r'<td align="left" csk="(\d\d\d\d)\d\d\d\d"><a ...
1
vote
8answers
513 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 ...
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 ...
6
votes
2answers
220 views

Python: Avoid short circuit evaluation

This is a problem that occured to me while working on a Django project. It's about form validation. In Django, when you have a submitted form, you can call is_valid() on the corresponding form object ...
0
votes
5answers
67 views

PHP if Statement with OR

I seem to be having a mysterious problem with the use of OR or || in a PHP if statement. My code is this: if ($region=='ibiza' || 'mallorca' || 'menorca' || 'andalucia' || 'basque' || 'cataluna' || ...
-1
votes
2answers
110 views

mathematical VS logical operators precedence

why is it that in most programming languages the mathematical operators precedence is different from the logical operators precedence. meaning: why is x / y * z evaluates to ( x / y ) * z so that / ...
1
vote
3answers
146 views

logical OR column

What would be the most efficient approach to perform a logical OR (on 1's and 0's) on every column of a matrix in Python? 0 0 0 0 0 0 1 0 1 0 0 1 OR 0 0 1 ...