|
-
October 30th, 2008, 08:42 AM
#1
Vote favorite programming langugae
hi
i want to know about different people's favorite programming languages
so i m conducting a voting system on my blog
so give vote to ur favorite programming langugae
http://programmerpoint.blogspot.com/
-
October 30th, 2008, 08:47 AM
#2
Re: Vote favorite programming langugae
Why such a limited list???? I can cover well over 30 programming languages that I enjoy for various reasons that are not on that list.....
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
2008, 2009,2010
In theory, there is no difference between theory and practice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions 
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
-
October 30th, 2008, 09:30 AM
#3
Re: Vote favorite programming langugae
It seems C++ is winning 
Anyway, I'm mainly a C++ programmer myself, but I agree with TheCPUWizard, the list seems a bit short...
-
October 31st, 2008, 12:30 AM
#4
Re: Vote favorite programming langugae
ok
tell me all languages u wish to be on the list
thanks
-
October 31st, 2008, 07:30 AM
#5
Re: Vote favorite programming langugae
Just a start:
http://cgibin.erols.com/ziring/cgi-b...ex&_userlink=1 (146 languages there)
(Even scanning thi list, I see lots of missing languages such as RatFor, FOCAL, LEX, YACC.....
Then we could add about 100 processors to program in assembler....
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
2008, 2009,2010
In theory, there is no difference between theory and practice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions 
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
-
October 31st, 2008, 10:38 AM
#6
Re: Vote favorite programming langugae
Objective-C would win my vote for programming languages, but it isn't on there. Now, if you added scripting languages, PHP would be my favorite.
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
October 31st, 2008, 02:36 PM
#7
Re: Vote favorite programming langugae
Sure the list is limited, but it's a great way for the OP to generate site hits.
-
November 1st, 2008, 10:40 PM
#8
Re: Vote favorite programming langugae
actually here i m giving a short list but not possible to give a long list
however as sscripting language is concerned, a seprate poll will be given.
-
November 1st, 2008, 10:46 PM
#9
Re: Vote favorite programming langugae
Just as a note, the thing that amazes me is that so few "programmers" are even aware that there are the variety of languages available.
When looking to solve a problem (or meet a need - same thing), it is critical to have a good knowledge of many of these languages in order to make an informed decision as to which language would be best suited for a given task.
In my experience this is at least partly the basis for the frequent "failures" in software development projects.
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
2008, 2009,2010
In theory, there is no difference between theory and practice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions 
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
-
November 3rd, 2008, 05:34 AM
#10
Re: Vote favorite programming langugae
What? Like using the right tool for the job you mean? Not me! I've never seen the need for a screwdriver, I just hammer them in!
-
November 4th, 2008, 06:45 AM
#11
Re: Vote favorite programming langugae
now i have re-arrranged it but it is not possible to include all languges
vote now
-
November 4th, 2008, 08:14 AM
#12
Re: Vote favorite programming langugae
Haha. 1 vote.
The list is still VERY limited. You have Visual Basic, but you don't specify 6 or .NET. Since there are hundreds of other languages...the "others" category has some serious potential.
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
November 5th, 2008, 04:07 PM
#13
Re: Vote favorite programming langugae
 Originally Posted by TheCPUWizard
Just as a note, the thing that amazes me is that so few "programmers" are even aware that there are the variety of languages available.
When looking to solve a problem (or meet a need - same thing), it is critical to have a good knowledge of many of these languages in order to make an informed decision as to which language would be best suited for a given task.
In my experience this is at least partly the basis for the frequent "failures" in software development projects.
May you list some examples of "failures" in software due to choosing a less appropriate language? And perhaps how you think they could be avoided?
I see how this question may seem insultive; I'm asking because I really don't know.
Thank you
01101000011001010110110001101100011011110010000001110011011001010111100001111001
-
November 5th, 2008, 04:33 PM
#14
Re: Vote favorite programming langugae
 Originally Posted by answer
May you list some examples of "failures" in software due to choosing a less appropriate language? And perhaps how you think they could be avoided?
I see how this question may seem insultive; I'm asking because I really don't know.
Thank you
First lets look at "failure". I consider any of the following to be a failure:
1) Program does not meet a functional requirement.
2) Program costs more (total lifecycle) than alternative.
3) Program misses delivery schedule.
4) Program does not optimally address actual business use cases.
In other words a "success" is something that meets all functional requirements, makes the end-users happy, costs the least (development, documentation, testing, maintenance, support, etc), AND is delivered at the earliest possible date.
Now for a very trivial example:
1) You have a team of skilled programmers in Language "A"...Yet you have heard that Language "B" is more "efficient" for a specific task. You are likely to encounter #2 and #3 - largely because of the re-training effort. This effect it mitigated (Through amortization) if you are going to develop a number of solutions using Language B".
2) You start a project that involves a new technique (eg Distributed computing). You team is expert at Language "A" and the language is powerful enugh that they can implement a custom solution. However by neglecting Language "B" which has inherent support for the technique, you have significantly increates the amount of work. This also increases the potential for bugs
3) You know your business arequirements are going to be changing over time, yet you program in a "conventional" language rather than a DSL (Domain Specific Language) which may allow business users to take more direct control.
The general list goes on and on...but this should give an idea...
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
2008, 2009,2010
In theory, there is no difference between theory and practice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions 
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
-
November 6th, 2008, 12:13 PM
#15
Re: Vote favorite programming langugae
 Originally Posted by TheCPUWizard
There are 1233 (today) at 99-bottles-of-beer. And counting... 
http://99-bottles-of-beer.net/
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|