Conceptual questions involve programming problems which are not related to program code itself, but with algorithm logic and program architecture.

learn more… | top users | synonyms

0
votes
0answers
7 views

Entity factorization and relationship in ER modeling

Please consider this case: An entity called "MeasuredData" has the following attributes : m_code m_start_time m_valeur unit conversion_coeffcient duration(secondes) calcul_type This entity can ...
0
votes
1answer
35 views

Which separating method is cleaner for long function?

I have long of code function about 100 lines. It's hard to read. Which is cleaner or better way to separate the function? First way function main() { func1(); func2(); func3(); ...
2
votes
3answers
46 views

Enumeration vs Indexing vs Iteration

I've been reading Eric Lippert's blog for a while now (it's excellent, you should check it out) and In the comments of one of his posts, he mentions that he had no intention indexing a sequence of ...
0
votes
2answers
84 views

Is passing by reference is a special case of passing as pointer? [duplicate]

I haven't understand passing by reference in C++ completely. I already read related questions like the following ones. What are the differences between pointer variable and reference variable in ...
1
vote
2answers
73 views

Modulus in Java

I want to get the value of an unknown number in equation containing modulus % in Java For example: x % 26 = y if I have the value of y how can I get x
1
vote
3answers
93 views

When should we use event in C#

I am a newbie of C# and WPF. And I just learned the asynchronous programming in C#. We raise event and some where we catch this event. The advantage of this method is we don't need to call directly ...
2
votes
2answers
87 views

WPF: How to trigger GUI behaviours in response to view-model events?

I'm developing a WPF/MVVM application and I have a listbox binding to data in a ViewModel. At various points I need the view model to cause the listbox to scroll to a given element. How can I do ...
2
votes
4answers
161 views

How to (correctly) update the M in MVVM of WPF application?

Having passed a series of Edward Tanguay's questions refractoring the usage of MVVM for WPF app which can be found in Linked sidebar of his Fat Models, skinny ViewModels and dumb Views, the best MVVM ...
-1
votes
1answer
112 views

Which executes first Code Behind or View Model

Based on my previous question Accessing variables from XAML and object from ViewModel using Code Behind: How would I know which executes first? Is it the code behind or the ViewModel? I just want ...
5
votes
2answers
72 views

What is the difference between WPF Command and Event in WPF?

I was just googling the difference between WPF Command and Event in WPF. i landed on the following page of stackoverflow where the discussion is going on. What is the difference between WPF Command ...
5
votes
2answers
1k views

I/O performance - async vs TPL vs Dataflow vs RX

I have a piece of C# 5.0 code that generates a ton of network and disk I/O. I need to run multiple copies of this code in parallel. Which of the following technologies is likely to give me the best ...
2
votes
5answers
92 views

Abstract Class vs. Interface

I have searched around SO as well as the rest of the web for a good answer but I have't found one that I really understand. I am going to present this in a different way and hopefully the answers will ...
2
votes
2answers
58 views

Why decorator is a structural and not behavioral design pattern?

I consider myself having intermediate knowledge of GoF design patterns. However, I get confused when it comes to classifying those patterns into structural and behavioral patterns. I do not have any ...
0
votes
4answers
50 views

Spring injecting one property dynamically

I am new to Spring and i am stuck with a scenario where i need help. My Scenario is i have a bean definition for some specific module like this. <bean name="ruleEngineAction" ...
0
votes
1answer
85 views

std::bind inside of a class, general concept of an event system

I'm working on a library that's based upon a simple event-system. For work with GUI elements ("controls"), these are needed a lot. For example, the Window class has got a bunch of events, like ...
2
votes
1answer
130 views

What Does the Process Tree Look Like Using Fork()?

Say, for example, we have the following executed in the shell: ls | grep "abc" | wc I understand how a child process would fork from the shell and how its a child, like this, Shell (pid=12) ...
0
votes
0answers
91 views

Calling Access Function from c# while The Access Project is already Running

we do have an old software running on the front-end with MS-Access and MS-SQL in the back-end. While the User is working in the MS Access application, a c# win forms application is importing Data to ...
1
vote
2answers
57 views

Why are NASM programs broken down into 3 sections? [duplicate]

What is the technical reason NASM programs are broken down into three "sections"; .data, .bss and .text ? What is really happening behind the scenes? Why does the assembler need to know in advance if ...
0
votes
0answers
27 views

Concepts - Storing metadata for files and directories

I am attempting to code a custom filesystem in Lua for an OS in ComputerCraft - a mod for the popular game Minecraft. One of the things that I want to implement is permissions, character files and the ...
0
votes
1answer
67 views

Performance Typed Column x Distinct Table

There are differences between distinct tables and type columns in terms of Performance or Optimizations for queries? for example: Create Table AllInOne( Key Integer Identity Primary Key, Desc ...
0
votes
0answers
187 views

Create a calculator program with C++ [closed]

First of all, I'm not sure if my question should be here. It is more of a programming concept question rather than a problem I've faced during programming. If it is not appropriate, please tell me and ...
2
votes
3answers
51 views

How should I ideally create a well-structured UITableViewDataSource?

I have an NSArray of songs fetched from a server. That is my raw data source. The array contains custom objects which have an NSDictionary and NSArray as backend. I am wondering if implementing a ...
2
votes
2answers
115 views

Force subclasses to set a variable in java

I am developing in Android and have a relatively simple situation I am trying to implement in the best way possible. Simply, I have a class which defines all of the basic parameters for a given ...
0
votes
2answers
180 views

Find intersection(s) of any two functions - solving simultaneous equations

Imagine having any two functions. You need to find intersections of that functions. You definitely don't want to try all x values to check for f(x)==g(x). Normally in math, you create simultaneous ...
0
votes
2answers
62 views

What is the purpose of dividing rows into columnfamilies if they can have different number/types of columns anyway?

Given that a column family can have rows with arbitrary structure we could store all rows in a single "store" (avoiding the name 'columnfamily/table' on purpose). What is the purpose of column ...
2
votes
1answer
50 views

Why does the root object implement equality?

In many object oriented languages such as Java, the .NET family, Python, Ruby, and I'm sure a host of others, the root object class from which all other classes inherit defines an equality checking ...
0
votes
5answers
119 views

realloc in C - exact behaviour and uses

By literature, I was able to grasp that realloc takes in a void pointer and a size variable and re-allocates the memory of the block the void pointer points to. What will happen if realloc is called ...
2
votes
3answers
135 views

Emulation of file system using TreeMap?

I am trying to figure out how I could make something that looks like a folder file structure for a Java shell I am trying to make. I want it to resemble something like the linux folder structure ...
1
vote
3answers
112 views

OOP structure design

I'm try to design "Network Connection" for easily use to retrieve data from server. However, I facing a design problem. My NetworkUtil Class which I'm going to use was designed as class NetworkUtil ...
0
votes
2answers
111 views

MVC: Controller keeps array of model objects or view objects?

I have a view controller placeViewController which pulls in a bunch of Place objects, and from these loads and populates a matching bunch of PlaceView objects which are then displayed as subviews to ...
0
votes
0answers
105 views

How does one represent multiple threads in a flow chart

I have been tasked with creating a flow chart for some client server and start up processes in our organizations software. A lot of our processes run concurrently as they have no impact on one ...
0
votes
1answer
10 views

Variation Amongst Arrays

I have several items(topics) each featuring several sub-items, as outlined below... Application microsoft word excel visual studio DB mysql mssql I want to compare several of these groups and ...
1
vote
3answers
157 views

Why does adding an index to a database field speed up searching over that field?

I'm new to databases and have been reading that adding an index to a field you need to search over can dramatically speed up search times. I understand this reality, but am curious as to how it ...
1
vote
1answer
252 views

Implement WF4 workflow Resume without Bookmarks

Is there any other way to make a workflow resume at some state (state machine) without using bookMarks? Thanks,
5
votes
2answers
2k views

Understanding context in C# 5 async/await

Am I correct that async/await itself has nothing to do with concurrency/parallelism and is nothing more than CPS implementation? And the real threading is performed by SynchronizationContext instance ...
1
vote
1answer
54 views

How can I describe the concept of instance or static affiliation?

When I was writing documentation for a method taking a parameter of type MethodAttributes (.NET), I had trouble to refer to the concept of a member being either a static or an instance member. Is ...
0
votes
4answers
218 views

Need to understand the functionality of string.count() function

I was trying to understand the functioning of string.count basically The documented definition of it is string.count(s, sub[, start[, end]]) Return the number of (non-overlapping) occurrences ...
4
votes
3answers
116 views

My trainer says Java creates 380 objects to run a simple java program.Is this right? [closed]

A java trainer who trained in our company claims there are 380 objects created to run the simplest "Hello World" program. Is this correct ? How do I verify it ?
0
votes
3answers
325 views

Is URL rewrite / routing (mod_rewrite) really necessary for a framework?

I've been writing PHP code for years. And now I have plenty of reusable modules -- for me at least. A typical classic-old-style developer :D. But now almost everybody using baked instant framework, ...
1
vote
1answer
106 views

What impact does using these facilities have on orthogonality?

I am reading The Pragmatic Programmer: From Journeyman to Master by Andrew Hunt, David Thomas. When I was reading about a term called orthogonality I was thinking that I am getting it right. I was ...
2
votes
2answers
254 views

Conceptual inquiry about __main__ in Python

I am currently working with Python and have been confused over the fact that functions are listed in __main__. I have been looking over multiple python scripts to try to find a common theme as to ...
1
vote
2answers
2k views

How to show usage of static methods UML Classdiagram

How do i show the use of static methods in a UML class diagram? class A{ public static void test(){ } } class B{ public void b(){ A.test(); } } How would a class diagram look ...
1
vote
1answer
176 views

conceptual search engine and dictionary of concepts

I'm asking about conceptual search (or concept-based search) which doesn't find documents based on specific word or phrase, but it returns relevant documents which are conceptually related regardless ...
0
votes
0answers
12 views

conceptualize filter list, friendly-user

I search a way to conceptualize the concept of filtering a list. Its for an help documentation. Example: you have 3 list linked : grand-parent, parent, child you want to show grand-parent and ...
0
votes
1answer
100 views

Meaning of compiled without debug information

In the JavaDoc of LocalVariableTableParameterNameDiscoverer http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/core/LocalVariableTableParameterNameDiscoverer.html The below line ...
0
votes
3answers
61 views

In memory class generation with attribute and methods

Hey this is a conceptual question and create some curiosity in my mind that is it possible to create Class(not object) dynamically or in memory? and also we can define attributes and methods for this ...
0
votes
1answer
311 views

Best practices for initialising Objective-C properties

I understand that this may not necessarily apply to just @properties, but they would be the most common use case. If there is, for example: @property (strong) NSObject *object; ... @synthesize ...
0
votes
4answers
582 views

Why we need Abstract Class while we are having Class ???

When we talk about conceptual level object oriented programming Concept, Assume that we are going to create Car Object.therefore we need to Design parent class..suppose if you are going to do the that ...
2
votes
2answers
316 views

How is cloning and serialization different than using “new” and reflection?

When I read about "In How many ways we can create an Object in java". I found four way: Creation of Object using new Operator. Cloning Serialization Reflection. With new and reflection, I ...
2
votes
3answers
385 views

Finding items in an universal hash table?

If items are organized randomly, how does the table know where to start looking? In a non-random table items are organized according to some characteristic. (i.e. name). So if the table needs to look ...

1 2 3