Tagged Questions
The concepts tag has no wiki summary.
312
votes
87answers
27k views
Best ways to teach a beginner to program? [closed]
Original Question
I am currently engaged in teaching my brother to program. He is a total beginner, but very smart. (And he actually wants to learn). I've noticed that some of our sessions have ...
217
votes
19answers
7k views
Why is OOP hard for me? [closed]
I have trouble writing OOP in PHP... I understand the concept but I never create classes for my projects... mainly because it's often a small project and nothing complex. But when I read OOP, it seems ...
41
votes
10answers
2k views
What defines “pythonian” or “pythonic”?
I want to begin to learn Python, and I've seen that phrase come up here before, but I don't know exactly what it means. I've read some websites on Python scripting, but I don't recall ever seeing that ...
37
votes
6answers
6k views
How does a debugger work?
I keep wondering how does a debugger work? Particulary the one that can be 'attached' to already running executable. I understand that compiler translates code to machine language, but then how does ...
36
votes
5answers
4k views
Default template arguments for function templates
Why are default template arguments only allowed on class templates? Why can't we define a default type in a member function template? For example:
struct mycclass {
template<class T=int>
...
33
votes
6answers
7k views
How Does Differential Execution Work?
I've seen a few mentions of this on SO, but staring at Wikipedia (the relevant page has since been deleted) and at an MFC dynamic dialog demo did nothing to enlighten me. Can someone please explain ...
33
votes
8answers
5k views
What are the primary differences between TDD and BDD?
Test Driven Development has been the rage in the .NET community for the last few years. Recently, I have heard grumblings in the ALT.NET community about BDD. What is it? What makes it different from ...
32
votes
5answers
37k views
Can someone please give an example of 1NF, 2NF and 3NF in plain english?
I am trying to really wrap my head around the database normalization concept. I understand that it is used to avoid duplicate/redundant data, and it involves creating separate tables for certain ...
31
votes
6answers
3k views
What is Map/Reduce
I hear a lot of noise about map/reduce, esp in the context of Google's massively parallel compute system. What exactly is it, and why is it "cool"?
28
votes
4answers
7k views
What is the difference between an interface and abstract class?
What exactly is the difference between an interface and abstract class?
25
votes
4answers
1k views
What is ALT.NET? [closed]
Recently, Scott Hanselman blogged and podcasted about ALT.NET. What is it and how is it a new concept? What can I learn?
23
votes
4answers
425 views
What kind of “Traits” are used/defined in the C++0x Standard
A trait in C++ encapsulates a family of operations that allow an Algorithm or Data Structure to operator with that type with which it is instantiated. char_traits are an example for grouping string- ...
23
votes
14answers
6k views
How come MD5 hash values are not reversible?
One concept I've always wondered about is the use of cryptographic hash functions and values. I understand that these functions can generate a hash value that is unique and virtually impossible to ...
22
votes
8answers
1k views
What is 'Pattern Matching' in functional languages?
I'm reading about functional programming (in academic purpose) and I've noticed that Pattern Matching is mentioned in many articles as one of the core features of functional languages.
Can someone ...
21
votes
29answers
5k views
What's the best way to teach young kids some basic programming concepts?
I might be asking this question a bit early, since my kid isn't even born yet, but I want to be prepared. How should I start introducing basic programming concepts to my kid?
I remember typing ...
17
votes
13answers
4k views
What is the difference between design and architecture?
What is the difference between design and architecture?
16
votes
9answers
1k views
Purpose of singletons in programming
This is admittedly a rather loose question. My current understanding of singletons is that they are a class that you set up in such a way that only one instance is ever created.
This sounds a lot ...
16
votes
24answers
2k views
Most difficult programming explanation
Recently I tried to explain some poorly designed code to my project manager. All of the manager classes are singletons ("and that's why I can't easily change this") and the code uses event dispatching ...
16
votes
3answers
2k views
What is eager loading?
What is eager loading? I code in PHP/JS but a more generalised answer will be just fine.
I saw a lot of questions regarding Java & Ruby, but i don't know any of these languages, and I find it ...
16
votes
2answers
3k views
Code Re-entrancy vs. Thread Safety
What is the difference between the concepts of "Code Re-entrancy" and "Thread Safety"? As per the link mentioned below, a piece of code can be either of them, both of them or neither of them.
...
15
votes
9answers
2k views
C++0X Concepts are gone. Which other features should go too?
As you may have heard, the last meeting of the C++ standards committee voted to remove concepts from the next C++ standard. Of course, this will affect other features and would seem to throw the ...
15
votes
5answers
2k views
What are the core concepts in functional programming?
In object-oriented programming, we might say the core concepts are:
encapsulation
inheritance,
polymorphism
What would that be in functional programming?
15
votes
16answers
3k views
Which programming concepts a beginner should learn in which order?
If someone wants to learn programming starting from scratch, in which order should I recommend to learn which programming concepts? Should he start with data-structures or algorithms. When ...
13
votes
3answers
7k views
CouchDB a real world example
Tonight in my daily tech Googling I came across couchDB, after seeing tons of presentations about how it perform ten to hundred times better then any RDBM, how it would save us from SQL languages, ...
13
votes
25answers
7k views
What are the most important programming languages to know for concepts?
In your opinion, what are the most important languages for a programmer to know? I'm talking about concepts, not about how practical the language is.
List the languages and a reason. For example, ...
13
votes
7answers
21k views
What is mutex and semaphore in Java ? What is the main difference?
What is mutex and semaphore in Java ? What is the main difference ?
13
votes
24answers
1k views
Basic programming/algorithmic concepts
I'm about to start (with fellow programmers) a programming & algorithms club in my high school. The language of choice is C++ - sorry about that, I can't change this. We can assume students have ...
12
votes
10answers
1k views
Stop User from using “Print Scrn” / “Printscreen” key of the Keyboard for any Web Page
I am currently doing a project, in which I need to stop the user from taking the snapshot of any Web Page, for which he can use the "Print Scrn" / "Printscreen" key available in any of the normal ...
12
votes
11answers
1k views
Understanding Generators in Python?
Reading the Python cookbook at the minute and currently looking at generators. I'm finding it hard to get my head round.
As I come from a Java background, is there a Java equivelant? The book was ...
12
votes
5answers
2k views
Do You Recommend “The Art of Multiprocessor Programming?”
What is your opinion on The Art of Multiprocessor Programming, by Maurice Herlihy?
Do you recommend it?
Please do not downvote other's
opinions; if you have a different
opinion, just add it as ...
12
votes
15answers
4k views
Main concepts in OOP
I was once asked in an interview 'What are the 3 main concepts of OOP?'.
I answered by saying that in my opinion there were 4 which are as follows:
Inheritance
Encapsulation
Abstraction
Polymorphism
...
12
votes
5answers
11k views
Where can I find clear examples of MVC?
I've read a couple of things about MVCs but I still don't understand when they should be used and when they shouldn't be used. I am looking for clear examples that say things like "if you're ...
12
votes
10answers
2k views
What does scalability mean to you?
I posted a similar question on how scalable linq is. There were so many different views on what scalability actually meant in some recent conversations, so it has sparked me to ask this question as ...
11
votes
3answers
1k views
What's the difference between C++0x concepts and The Boost Concept Check Library (BCCL)?
Concepts didn't make the C++0x standard, but Boost still provides The Boost Concept Check Library (BCCL). I guess that BCCL doesn't cover everything that was meant to into the C++0x standard. What is ...
10
votes
3answers
2k views
Where does static variable work in ASP.NET page?
I had an interview today and every thing was going very good, but then an interviewer asked me a question Where Does Static Variable Work in C#- At Application Level or At Page Level.
I was not very ...
10
votes
5answers
520 views
Good websites and/or books to learn game algorithms?
I'm interested in learning video game algorithms. (For iPhone particularly, but generally as well. I assume certain concepts are the same.) I am best off (personally) learning from a book but websites ...
10
votes
4answers
420 views
Books about language paradigms and concepts [closed]
What book(s) will you recommend if the goal was to learn
Different language paradigms (OO, functional, ..)
Different concepts (dynamic/static typed, immutability, ..)
In short, i'm looking for a ...
10
votes
2answers
428 views
What are concepts?
I've heard all this new (on /.) about C++0x not having concepts anymore, but I have no idea what they are? Can someone explain to me?
10
votes
5answers
573 views
What does “Data is just dumb code, and code is just smart data” mean?
I just came across an idea in The Structure And Interpretation of Computer Programs:
Data is just dumb code, and code is just smart data
I fail to understand what it means. Can some one help ...
10
votes
13answers
2k views
Which recursive functions cannot be rewritten using loops?
As far as I know, most recursive functions can be rewritten using loops. Some maybe harder than others, but most of them can be rewritten. So the question is, under which conditions does it become ...
9
votes
4answers
185 views
AOP Fundamentals
Aspect-oriented programming is a subject matter that has been very difficult for me to find any good information on. My old Software Engineering textbook only mentions it briefly (and vaguely), and ...
9
votes
8answers
851 views
A way to catch up to modern programming techniques
I have been programming, non professionally for about 23 years and find I am a little stuck in my ways. I find a tool I like, and it stays that way for year after year. Unfortunately this means that I ...
9
votes
7answers
2k views
ASP.NET MVC = Classic ASP with .NET class library. Really?
This blogpost and one of our senior developers at work believe that web development has come full circle with ASP.net MVC. Its not really a question about VB script vs VB9/10 or whatever is the ...
9
votes
8answers
2k views
Is OOP & completely avoiding implementation inheritance possible?
I will choose Java as an example, most people know it, though every other OO language was working as well.
Java, like many other languages, has interface inheritance and implementation inheritance. ...
8
votes
3answers
236 views
Java Generics, support “Specialization”? Conceptual similarities to C++ Templates?
I know quite a bit how to use C++-Templates -- not an expert, mind you. With Java Generics (and Scala, for that matter), I have my diffuculties. Maybe, because I try to translate my C++ knowledge to ...
8
votes
4answers
240 views
What is ‘power-to-weight ratio’ of an API?
In Bloch’s presentation, he said designer should look for good power-to-weight ratio for API. Moreover, he also stressed that ‘Conceptual weight more important than bulk’. I guess the weight is for ...
8
votes
8answers
669 views
Difference between object and instance
I know this sort of question has been asked before, but I still feel that the answer is too ambiguous for me (and, by extension, some/most beginners) to grasp.
I have been trying to teach myself ...
8
votes
1answer
273 views
Hypothetical, formerly-C++0x concepts questions
(Preamble: I am a late follower to the C++0x game and the recent controversy regarding the removal of concepts from the C++0x standard has motivated me to learn more about them. While I understand ...
8
votes
9answers
862 views
C++0x will no longer have concepts. Opinions? How will this affect you?
At the July 2009 C++0x meeting in Frankfurt, it was decided to remove concepts from C++0x. Personally, I am disappointed but I'd rather have an implementable C++0x than no C++0x. They said they will ...
7
votes
3answers
196 views
Why were concepts (generic programming) conceived when we already had classes and interfaces?
Also on programmers.stackexchange.com:
I understand that STL concepts had to exist, and that it would be silly to call them "classes" or "interfaces" when in fact they're only documented (human) ...