Welcome Guest ( Log In | Register )



9 Pages V   1 2 3 > »   
Reply to this topicStart new topic
> Your Most Favourite Computer Language
the best computer language
the best computer language
C / C++ [ 19 ] ** [27.94%]
C# (.NET) [ 4 ] ** [5.88%]
Java [ 9 ] ** [13.24%]
Basic / Visual Basic (.NET) [ 13 ] ** [19.12%]
Pascal / Object Pascal [ 0 ] ** [0.00%]
Lisp / Prolog [ 0 ] ** [0.00%]
PERL [ 2 ] ** [2.94%]
PHP [ 13 ] ** [19.12%]
JavaScript [ 7 ] ** [10.29%]
Python [ 1 ] ** [1.47%]
Ruby [ 0 ] ** [0.00%]
Total Votes: 30
Guests cannot vote 
kilz
post Sep 5 2004, 05:15 AM
Post #1


Member [ Level 2 ]
Group Icon

Group: [HOSTED]
Posts: 52
Joined: 5-September 04
Member No.: 256



what do you think??

This post has been edited by microscopic^earthling: Apr 19 2005, 04:23 PM
Go to the top of the page
 
+Quote Post
kilz
post Sep 5 2004, 05:21 AM
Post #2


Member [ Level 2 ]
Group Icon

Group: [HOSTED]
Posts: 52
Joined: 5-September 04
Member No.: 256



I know php only, but I'd like to learn C/C++ next time.
Go to the top of the page
 
+Quote Post
mastercomputers
post Sep 5 2004, 10:24 AM
Post #3


BUG.SWAT.PATROL
Group Icon

Group: Members
Posts: 626
Joined: 1-September 04
From: Auckland, New Zealand
Member No.: 27



I would like to vote, but there really isn't a 'best' language, it would be biased if I voted as I prefer certain languages as personal preferences and not because it's the best designed language.

What should be said is why so and so language is considered good, I believe every language has their purposes and the developers had that in mind too, they were even developed to do similar things that other languages did as well as having improvements.

Now I am against some languages, it's kind of like Windows VS. Linux, Windows was made with ease of use in mind while Linux was considered a ground for developers/programmers, there probably wasn't a consideration of other users at that time till recently.

That's the same I have against other languages, they have languages that people can develop small to large scale products without knowing much in the programming side, it also helped people develop viruses and trojans much easier, although I do believe these people do have knowledge but they lack the programming side of things (don't quote me on that). Another thing that I don't like is how programs aren't easily portable to other OS, this was purposely designed into those programs by someone I'll just call a GIANT, but that doesn't mean it can't be ported, it does however mean you'd spend quite a while trying to figure it out.

ASM, C/C++ would be my choice of language no matter what, I've looked at C# and D Language and still haven't convinced me that I should change, they've addressed known problems but they have taken away some control and I like having full control, even if this opens up potential exploits, at least it'll keep me on my feet.

In the dynamic web developing, it'll have to be PHP, because I know Perl and C, this language was easy for me to pick up and it has a lot of well thought out things and it's constantly getting better (and bigger in size).

So even if a 'best' language was chosen, it'd be nice to see feedback of why you chose that language. For my choice, it's being in control of every single bit and byte.


Cheers, MC
Go to the top of the page
 
+Quote Post
jcguy
post Sep 5 2004, 11:49 AM
Post #4


Premium Member
Group Icon

Group: Members
Posts: 382
Joined: 5-September 04
Member No.: 255



I'm quite confused about programming languages. My friend told me that you can make web pages with C++, but I thought that there is only one programming langauge for web pages: HTML? I know that languages like C++ are using for writing programs, but can they be used too for web pages?
Go to the top of the page
 
+Quote Post
Hercco
post Sep 5 2004, 06:58 PM
Post #5


Super Member
Group Icon

Group: Members
Posts: 595
Joined: 4-September 04
Member No.: 228



QUOTE(jcguy @ Sep 5 2004, 01:49 PM)
I'm quite confused about programming languages. My friend told me that you can make web pages with C++, but I thought that there is only one programming langauge for web pages: HTML? I know that languages like C++ are using for writing programs, but can they be used too for web pages?
*



Well webpages are made using a markup languages, which aren't programming languages. Basically for webpages the markup language is either HTML or XML.

What server side scripting languages like PHP or ASP do is just output markup languge. For example the PHP script creating these forum pages fetch the data of our posts from a database, processes it and prints out HTML.

C or C++ can be just aswell used for the same task as server side scipting languages. There just needs to be compiled programs on the server and server set to allow execution of these programs when a webpage is requested. Similarly th programs outputs HTML (or wahtever) which is sent to user and viewed in his browser.
Go to the top of the page
 
+Quote Post
xavierduan
post Sep 6 2004, 05:11 AM
Post #6


Member [ Level 1 ]
Group Icon

Group: Members
Posts: 34
Joined: 2-September 04
Member No.: 75



we will get different result in different standard
it is not suitable to compare these coding languages
i think php is the best and c# is the best too
Go to the top of the page
 
+Quote Post
kilz
post Sep 6 2004, 11:10 AM
Post #7


Member [ Level 2 ]
Group Icon

Group: [HOSTED]
Posts: 52
Joined: 5-September 04
Member No.: 256



QUOTE(xavierduan @ Sep 6 2004, 05:11 AM)
we will get different result in different standard
it is not suitable to compare these coding languages
i think php is the best and c# is the best too
*



PHP is easy, but C# is not.
some1 say dat C is a top level language. . .and php is basic.

because php has lots of build in function.??
Go to the top of the page
 
+Quote Post
wappi
post Sep 6 2004, 11:34 AM
Post #8


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 2
Joined: 6-September 04
Member No.: 304



i think php an c are different things. In C you can do many usefull programs and whith php you can do dynamic internet pages.
Go to the top of the page
 
+Quote Post
Hercco
post Sep 6 2004, 01:57 PM
Post #9


Super Member
Group Icon

Group: Members
Posts: 595
Joined: 4-September 04
Member No.: 228



Yes. With C you can do practically anything, while PHP is suitable for only certain tasks. Also the performance levels of these two languages or , to be accurate, programs created with these languages are far from each other. C programs naturally being faster being relatively low level and compiled.
Go to the top of the page
 
+Quote Post
imarunnre
post Sep 6 2004, 09:28 PM
Post #10


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 2
Joined: 6-September 04
Member No.: 325



QUOTE(Hercco @ Sep 6 2004, 01:57 PM)
Yes. With C you can do practically anything, while PHP is suitable for only certain tasks. Also the performance levels of these two languages or , to be accurate, programs created with these languages are far from each other. C programs naturally being faster being relatively low level and compiled.
*



Python is really easy to learn.
Go to the top of the page
 
+Quote Post

9 Pages V   1 2 3 > » 
Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Favourite Bands(64)
  2. Dyndns (get A Domain Name For Your Home Computer)(7)
  3. Online Multiplayer Game(16)
  4. How To Transfer Files From One Computer To Another(16)
  5. Mud List(11)
  6. Turn On Your Computer Automatically(25)
  7. Computer Shuts Down - Why?(23)
  8. Help Me: Need To Transfer Files From Old Computer(18)
  9. What Language Is Linux Written In ?(15)
  10. GumStix - 400 MHz Computer On A Stick O' Chewing Gum(6)
  11. Favourite Harvest Moon Game?(24)
  12. Who Is Your Favourite Free Host?(144)
  13. Computer Suddenly Turning Off(25)
  14. Dell Computer "shuts Down" When Opening Email(31)
  15. Choosing Computer Parts & Assembling 101(5)
  1. Blue Screen - irql_not_less_or_equal(35)
  2. System Stops Responding(10)
  3. Computer Turns Self Off(25)
  4. Your first computer?(48)
  5. Best Program To Tune Up An Old Computer?(9)
  6. Increase Your Knowledge Of Html Language(11)
  7. Computer Not Boot Up(5)
  8. Fast Computer(14)
  9. Choosing Your Computer Before Bying(4)
  10. Mysql On Computer(9)
  11. Disable Annoying Information Bar In Ie(7)
  12. Problems With New Computer(10)
  13. Site Language(6)


 



- Lo-Fi Version Time is now: 7th October 2008 - 12:14 PM