The set of rules within a programming language that determine which operations should be executed first.

learn more… | top users | synonyms

0
votes
1answer
21 views

What order of precedence does ∑ have?

Trying to implement a neural network algorithm here, but I'm a bit lost on the math side of things: Note that p and i should be subscript (not sure how to do it in stackoverflow). (ΣpΣi(tpi - ...
1
vote
2answers
42 views

Messy order of operations issue

I have a function that looks like this: function showCreditCard(idx, data) { if(typeof cardInfo == 'undefined' && parseInt($("#cc-dropdown-" + idx + " option:selected").val(),10) > ...
2
votes
3answers
182 views

C math order of operation

I have an assignment that I have been working on. My code appears to have the correct math operations and in the correct order (at least sequence wise), but my answers are a little screwy. I get parts ...
0
votes
1answer
44 views

logic in AND statments

I have this query that pulls data that I can use for some analysis: SELECT distinct egauge_analyze_2.dataid, date_trunc('hour', egauge_analyze_2.timestamp_localtime)::time AS HOUR, ...
1
vote
1answer
75 views

WHERE - Order of Operations

A comment in this question: Do not rely on short-circuiting ... Those clauses could be evaluated in any order SQL Server sees fit. As it relates to this answer: SELECT * FROM TABLE WHERE (@vari ...
1
vote
1answer
64 views

scrollTop fires before jquery executes

I can't figure this out. i am calling a function that loads based on: var option = self.document.location.hash.substring(1); if(option != ''){ subshow(option); } function subshow(this_id){ ...
3
votes
2answers
65 views

Unexpected results of boolean expressions in Python [duplicate]

Possible Duplicate: Why does the expression 0 < 0 == 0 return False in Python? The following output from the Python 2 REPL confuses me: >>> 15>10==True False >>> ...
0
votes
3answers
143 views

Javascript “if” Order of Operations

So let's say you have a really basic person object with two values and one function: function personObject() { this.name = 'First Name'; this.placeInLine = 1; this.setPlaceInLine = ...
-5
votes
3answers
609 views

Order of Operations Simple Brain Teaser [closed]

I have a simple piece of code that doesn't do what I expect. What is wrong with this code? int value1 = (int).5*100; This is pretty easy but through me for a loop for a good moment. Of course, the ...
3
votes
5answers
859 views

C/C++ Math Order of Operation

So I know that C++ has an Operator Precedence and that int x = ++i + i++; is undefined because pre++ and post++ are at the same level and thus there is no way to tell which one will get calculated ...
1
vote
1answer
110 views

Javascript: Comma operator, var, and scope - why does it work the way it does?

The comma operator evaluates each comma-separated operand (and returns the value of the last one). (i = 1 + 2), (j = 3 + 4); is functionally equivalent to i = 1 + 2; j = 3 + 4; Also, as far as ...
1
vote
1answer
146 views

WCF - how to perform operations from all clients in order they arrive?

I have a WCF service that will serve multiple clients. They will have operation like 'Accept Suggested Match' or 'Reject Suggested Match'. I would like all the operations to be run serially, but I am ...
2
votes
1answer
467 views

Extended Backus–Naur Form order of operations

I am creating a formal spec for a very simple rule language, very simple. I want to use EBNF as this is a standard but I can't figure out how to specify order of operations. Here is the specification ...
1
vote
1answer
172 views

Unexpected Result, Ternary Operator in Gnu C

So the operator precedence of the ternary operator in C seems truly bizarre to me. Case in point: #include <stdio.h> int main () { int i=5; int j=6; int k=7; printf("A: %d\n", ...
-6
votes
4answers
959 views

What is Java's order of operations for math? [duplicate]

Possible Duplicate: Java operator precedence guidelines In what order does Java do its calculation? I.e. multiplication before addition.
6
votes
3answers
155 views

Javascript: z = z || [] throws an error when not using VAR - why?

Out of just intellectual curiosity, why does javascript accept var z = z || []; to initialize z (as z may defined initially) but without var, it throws an error (in global space) z = z || []; ...
4
votes
4answers
553 views

What are the ramifications of right-to-left and left-to-right associativity in C based languages?

I'm in the process of writing a scripting language and I want to copy the (pretty well standardized) C order of operations. One thing that I never had a firm grasp of as a formal concept though is ...
2
votes
5answers
132 views

Order of operations when working with array index

Consider this loop: int[] myArray = new int[10]; int myIndex = 0; for (int i = 0; i < 10; i++) { myArray[myIndex++] = myIndex; Console.WriteLine(myArray[i]); } This yields: 1 2 3 ... ...
1
vote
4answers
152 views

logic of calling copy constructor

class base { public: base(){ cout << "base constructor" << endl; } base(const base& rh) { cout << "base copy constructor" << endl; } }; ...
29
votes
6answers
2k views

Does the order of operations change within an if expression?

I recently came across something that I thought I understood right off the bat, but thinking more on it I would like understanding on why it works the way it does. Consider the code below. The (x-- ...
3
votes
3answers
224 views

Do PHP's logical operators work as JavaScript's?

One of the things I like the most of JavaScript is that the logical operators are very powerful: && can be used to safely extract the value of an object's field, and will return null if ...
2
votes
5answers
5k views

Modulo and order of operation in Python, Zed Shaw examples

In Zed Shaw's "Learn Python the Hard Way" http://learnpythonthehardway.org (page 15-16) he has an example exercise # 3 print "Roosters", 100 - 25 * 3 % 4 the result is 97 (try it!) I cannot for the ...
21
votes
6answers
1k views

Is this code well-defined?

This code is taken from a discussion going on here. someInstance.Fun(++k).Gun(10).Sun(k).Tun(); Is this code well-defined? Is ++k in Fun() evaluated before k in Sun()? What if k is user-defined ...
2
votes
3answers
486 views

Order of operations question in Ruby

I'm initializing an instance of a class that tests the equality of two formulas. The formula's calculated values are in fact equal: RubyChem::Chemical.new("SOOS").fw => 96.0 ...
6
votes
3answers
156 views

Will this if statment cause bad things to happen?

int expenseCode; if (int.TryParse(sourceRecord.ExpenseCode, out expenseCode) && _ExpenseCodeLookup.ContainsKey(expenseCode)) { destRow.PROFIT_CENTER_NAME = ...
1
vote
0answers
139 views

EntLib Validation Rules Order of Operations?

What determines the order of execution of an EntLib validation rule: Given the following: <ValidatorComposition(CompositionType.And, Ruleset:="Default")> _ ...
1
vote
4answers
518 views

PHP Order of operations

I wanted to know how PHP would execute this. Order of operations addslashes(strip_tags($record['value'])); Is addslashes called first or strip_tags? In other words, does it execute from the inside ...
1
vote
1answer
299 views

Following an anchor to content on another page that isn't created until after the DOM is ready

To boil it down, I have two pages. Simplified, they could be represented this way. Page 1 <html> <a href="page-2.html#section-A">Link to section A</a> </html> Page 2 ...
3
votes
3answers
3k views

Python String Formatting And String Multiplication Oddity

Python is doing string multiplication where I would expect it to do numeric multiplication, and I don't know why. >>> print('%d' % 2 * 4) 2222 >>> print('%d' % (2 * 4)) 8 Even ...
12
votes
2answers
4k views

What good are right-associative methods in Scala?

I've just started playing around with Scala, and I just learned about how methods can be made right-associative (as opposed to the more traditional left-associativity common in imperative ...
8
votes
5answers
299 views

Why does “**” bind more tightly than negation?

I was just bitten by the following scenario: >>> -1 ** 2 -1 Now, digging through the Python docs, it's clear that this is intended behavior, but why? I don't work with any other languages ...
2
votes
2answers
298 views

What is the order of operations with this concatenation?

x = "hello" " world".to_sym puts x.class This works and allows me to concatenate the two strings into a symbol, producing the output: Symbol But if I change it slightly to use a + instead of ...
1
vote
1answer
5k views

Excel VBA Boolean Expression - Order of Operations

I have a test in Excel VBA: If (test1) And (test2) And (test3) Then 'do something End If In C, Java, etc. test1 would be run first, then test2, then test3. Critically, if test1 is false the ...