Top "Concept" questions

Concept programming is a programming paradigm focusing on how concepts, that live in the programmer's head, translate into representations that are found in the code space.

Node.js + Nginx - What now?

I've set up Node.js and Nginx on my server. Now I want to use it, but, before I start …

node.js nginx concept
Abstraction vs Encapsulation in Java

Possible Duplicate: Abstraction VS Information Hiding VS Encapsulation I know this question might have been asked thousands times on this …

java oop concept
how to implement Interfaces in C++?

Possible Duplicate: Preferred way to simulate interfaces in C++ I was curious to find out if there are interfaces in …

c++ interface concept
Interact with other programs using Python

I'm having the idea of writing a program using Python which shall find a lyric of a song whose name …

python automation interop concept
Understanding C's fork() through a simple example

#include <stdio.h> int num = 0; int main(int argc, char*argv[]){ int pid; pid = fork(); printf("%d", num); …

c fork concept
What is a distributed cache?

I am confused about the concept of Distributed Cache. I kinda know what it is from google search. A distributed …

caching concept
Is it necessary to write else part in every if condition?

The question I asked might be closed, But i just want to know that is it necessary to write else …

programming-languages concept
Which one is fast, Abstract class or Interface?

Possible Duplicate: Why are interface method invocations slower than concrete invocations? I recently had a chance to appear in an …

performance oop interface abstract-class concept
Handle multiple EntityManager in Java EE application

I have Java EE application with about 10 EntityManagers (number of EMs will probably increase). My application also contains many stateless, …

java jpa entitymanager concept
Why .NET is a Framework and Java is a Language

Ok. It's not a battle. I'm curious about the concept of framework, I worked with some frameworks like django, zend, …

java .net concept