E90Post
 


Coby Wheel
 
BMW 3-Series (E90 E92) Forum > BIMMERPOST Universal Forums > Off-Topic Discussions Board > For the programmers, what language do you use most?



View Poll Results: Programming Languages
JAVA 6 42.86%
C# .NET 3 21.43%
VB .NET 0 0%
C++ 5 35.71%
Voters: 14. You may not vote on this poll

Reply
 
Thread Tools Search this Thread
      09-19-2007, 10:53 PM   #1
BMXtreme
Lieutenant Colonel
BMXtreme's Avatar
59
Rep
1,657
Posts

Drives: E60 535i
Join Date: May 2007
Location: Redmond, WA

iTrader: (3)

Garage List
2006 330i  [0.00]
For the programmers, what language do you use most?

What language do you code in mostly?

JAVA
C# .NET
VB .NET
C++

Forgot to add others to poll..
Appreciate 0
      09-20-2007, 12:43 AM   #2
scooby9
Major
scooby9's Avatar
Canada
62
Rep
1,120
Posts

Drives: 2007 E90 BMW 335xi
Join Date: Jul 2007
Location: Calgary, Alberta, Canada

iTrader: (6)

C# for the last 6 years...
__________________
2007 BMW 335xi 6MT TiAg
Appreciate 0
      09-20-2007, 12:21 PM   #3
SoYank
Major General
SoYank's Avatar
United_States
571
Rep
7,519
Posts

Drives: 2009 E90 335i MT
Join Date: Mar 2006
Location: Vinton, Virginia

iTrader: (1)

Garage List
Fortran, Cobol, Pascal
__________________
2009 E90 335i Montego Blue · Black Leather · Burl Walnut · 6MT · US Spec
SatNav • ZPP • ZCW • 6FL • TPMS • iDrive • PDC • HWS • Xenons • BMW Assist • Power Rear Sunshade • Logic 7
European Taillights • Rear Foglamp • OEM Alarm • PicoTray • DataToys XM-DVR • Multi-view Processor
Quaife ATB LSD • Short Shift Knob • Hartge Anti-Roll Bars • AP Racing Front Brakes • 19" Style 269
Appreciate 0
      09-20-2007, 01:59 PM   #4
txusa03
Major General
554
Rep
6,563
Posts

Drives: TS330iPPSP6MT
Join Date: Jul 2005
Location: Planet Earth

iTrader: (3)

A more interesting question would be should you be concentrating on being an expert at one programing language vs knowing a multitude of programming languages? After all, logic is logic no matter what language you use (it is just a matter of learning the syntax and quirks with each language).

java script, c, SQL, html

In the past: basic, pascal, COBOL, JCL, REXX
__________________
under construction!
Appreciate 0
      09-20-2007, 02:40 PM   #5
SoYank
Major General
SoYank's Avatar
United_States
571
Rep
7,519
Posts

Drives: 2009 E90 335i MT
Join Date: Mar 2006
Location: Vinton, Virginia

iTrader: (1)

Garage List
Quote:
Originally Posted by txusa03 View Post
A more interesting question would be should you be concentrating on being an expert at one programing language vs knowing a multitude of programming languages? After all, logic is logic no matter what language you use (it is just a matter of learning the syntax and quirks with each language).

java script, c, SQL, html

In the past: basic, pascal, COBOL, JCL, REXX
I agree. If given a flowchart someone should be able to take it and write a program with it in any (computer) language.
__________________
2009 E90 335i Montego Blue · Black Leather · Burl Walnut · 6MT · US Spec
SatNav • ZPP • ZCW • 6FL • TPMS • iDrive • PDC • HWS • Xenons • BMW Assist • Power Rear Sunshade • Logic 7
European Taillights • Rear Foglamp • OEM Alarm • PicoTray • DataToys XM-DVR • Multi-view Processor
Quaife ATB LSD • Short Shift Knob • Hartge Anti-Roll Bars • AP Racing Front Brakes • 19" Style 269
Appreciate 0
      09-20-2007, 03:08 PM   #6
BMXtreme
Lieutenant Colonel
BMXtreme's Avatar
59
Rep
1,657
Posts

Drives: E60 535i
Join Date: May 2007
Location: Redmond, WA

iTrader: (3)

Garage List
2006 330i  [0.00]
Agree w/ the logic is logic...i don't see any difference in them. I code in almost any languages, shell, php, perl, c, c++ etc..and nothing seems different. Thing is to land a job, they want you to be an expert in millions of languages....but be realistic...you cannot be a pro in all available languages in the market.....absurd.
Appreciate 0
      09-20-2007, 03:12 PM   #7
txusa03
Major General
554
Rep
6,563
Posts

Drives: TS330iPPSP6MT
Join Date: Jul 2005
Location: Planet Earth

iTrader: (3)

Quote:
Originally Posted by BMXtreme View Post
Agree w/ the logic is logic...i don't see any difference in them. I code in almost any languages, shell, php, perl, c, c++ etc..and nothing seems different. Thing is to land a job, they want you to be an expert in millions of languages....but be realistic...you cannot be a pro in all available languages in the market.....absurd.
agreed. But they should list what language they prefer and what other language is a + to know. What company wants you to be an expert in every freaking language? If there is such a company, I would stay far away from them (they don't really know what they are looking for).
__________________
under construction!
Appreciate 0
      09-20-2007, 06:18 PM   #8
RobM
Can't get enough fast AWD cars
United_States
0
Rep
47
Posts

Drives: 05 Evo MR/07 E92 328xi
Join Date: Jul 2007
Location: Pittsburgh, PA

iTrader: (0)

Quote:
Originally Posted by BMXtreme View Post
Agree w/ the logic is logic...i don't see any difference in them. I code in almost any languages, shell, php, perl, c, c++ etc..and nothing seems different.
Really? The nuances of the languages are very different. In C/C++, you easily can have string buffer overflows. In Java, the language won't let you do that. If you were to write C code as if it were Java code, you'd have some very big security flaws.
__________________
2007 E92 328xi Coupe: Crimson Red ZCW/ZPP/ZSP/CA/NAV
2005 Evolution VIII MR (Rally Red)
Appreciate 0
      09-21-2007, 01:59 PM   #9
yomash
Second Lieutenant
yomash's Avatar
6
Rep
264
Posts

Drives: X5
Join Date: Apr 2007
Location: NoVA

iTrader: (0)

Quote:
Originally Posted by RobM View Post
Really? The nuances of the languages are very different. In C/C++, you easily can have string buffer overflows. In Java, the language won't let you do that. If you were to write C code as if it were Java code, you'd have some very big security flaws.
I agree, Object Oriented design is the same - the principles still hold (for JAVA v. C++), but when you get down the the implementation of the language it can be very different.

I learned C++ in school. I did .NET for 2 years professionally, and I have spent the last 2 years doing JAVA professionally. I think I am going to stick with JAVA and try to get good at it.

Anyone else here had to debate if they wanted to be an expert in JAVA or .NET ?
__________________

2012 e70 X5 xDrive35i M package Carbon Black
pervious: 2011 X3 28i | 2007 e92 335i coupe | 2008 e90 328xi Sedan | 2002 e46 M3 coupe | 2003 Z4 3.0
Appreciate 0
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT -5. The time now is 09:51 PM.




e90post
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
1Addicts.com, BIMMERPOST.com, E90Post.com, F30Post.com, M3Post.com, ZPost.com, 5Post.com, 6Post.com, 7Post.com, XBimmers.com logo and trademark are properties of BIMMERPOST