The programming-logic tag has no wiki summary.
0
votes
1answer
78 views
Good Data Structure book to improve programming logic for children [closed]
My cousin (Age 10) who studies in Standard 5. He wants to learn programming and programming logic.
Which book or resources should I refer? Is there any Good Data Structure book to improve ...
-2
votes
2answers
141 views
Is it reasonable to use Javascript MVC Frameworks for closed source paid web applications?
I am wondering if it is reasonable to write closed source, paid web apps in Javascript (JS MVC Frameworks like AngularJS, Backbone, Knockout, ...)? I'm concerned because in this type of frameworks you ...
-2
votes
0answers
125 views
Does game development require more logical skill than application developement? [closed]
I have worked on mobile apps for the past year and recently shifted to game developement. I can see some spike in the logic and programming skills that I have to use while creating games. Is this true ...
2
votes
2answers
175 views
How to unit test code which is intended to have different results on different platforms
I noticed some duplicate code in a codebase I am working on that appended a filename to a directory path, so I decided to refactor it into its own method. The application I am working on is not well ...
1
vote
1answer
319 views
Flow Chart - While Loops process
I'm having difficulties understanding whether or not this is the right process to use for a flow chart which illustrates the processes involved in an algorithm.
For this, assume the following:
A 1D ...
3
votes
1answer
151 views
Best Traversing Strategy / Logic Help Needed
Background: Here is the scenario, imagine I have a little Robot. I give this robot a Map, and I want him to traverse the map, after doing so, I want the Robot to tell me the shortest possible path on ...
5
votes
1answer
184 views
Is the separation of program logic and presentation layer going too far?
In a Drupal programming guide, I noticed this sentence:
The theme hook receives the total number of votes and the number of votes for just that item, but the template wants to display a ...
-2
votes
3answers
299 views
Should I use AND or should I use OR [closed]
An order can be in the "status" of Completed, Corrected or some other status.
I saw some code that is checking it like this, the purpose is to disable some stuff when the status is in Completed or ...
4
votes
3answers
478 views
Is saying “if ( $a != null && $a == 5)” the same as “if ($a == 5)”
First off, sorry if this is answered somewhere else. I did a brief search, but wasn't sure how to ask in search terms.
I'm looking at some code and came across lot's of statements like this:
if ( ...
9
votes
2answers
619 views
Non-mathematical Project Euler (or similar)? [closed]
I checked the post (Where can I find programming puzzles and challenges?) where there's a lot of programming challenges and such, but after checking several of them, they all seem to be about ...
9
votes
7answers
907 views
Programming knowledge vs. programming logic
Is there any difference between the two topics? I have seen companies asking for Good Programming knowledge some Good Programming logic.
I have seen this in Job profiles for a developer – for e.g. ...
-1
votes
4answers
680 views
How to improve my loop logic in programming?
I know how to do simple loops but I don't know what's going on when many loops are working together.
For example:
for (i=0; i <= 9; i++){
document.write(linebreak);
for (m=0; m <= 9; ...
-5
votes
8answers
485 views
Why aren't postfix and primary expressions symmetrical?
Every primary expression is a postfix expression but a postfix expression is not primary expression.
But in mathematics, equality seems to be symmetrical. That is:
If A is B, then B is A
Why ...
0
votes
5answers
230 views
ternary or something similar for choosing function?
I posted this question on stackoverflow and it got a poor reception. In reality, the problems I'm facing are minor and any workaround can be considered impractical. However, I believe it might be of ...
4
votes
9answers
538 views
How do you decide between putting the code in the database or putting the code in the application? [duplicate]
Possible Duplicate:
Should the programming language or should the database handle more work
For the sake of argument:
Let's assume the application we are building is an amortization ...