tags:

views:

51

answers:

2

The programming language or The programming logic.....

Because both are equally important for good coding practice. And, please justify your answer.

+5  A: 

What makes a program to be a good program?

Being able to address the customer needs and make him happy.

Programming language, programming logic, code style etc. are nonessential to the success.

Developer Art
consider from developer's point of view, not as a end user's point of view.
Adi_aks
Most customer doesn't care programming language or logic.
Liton
From a developer's point of view, the answer is: Being able to address the customer needs and make him happy, because he pays you for that.
ammoQ
This is my developer's point of view as well.
Developer Art
A: 

The programming language doesn't have squat to do with a good program, you can write ugly code in C++ and elegant code in LOLcode and if they perform the same function nobody will care. Most important is that the code is bug free and performs its function.

Andrew Dunn