d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Language Question
12Next
Add Reply New Topic New Poll
Member
Posts: 16,404
Joined: Mar 28 2009
Gold: 7.69
Apr 16 2015 10:02pm
I just changed my major to software developing. The only experience I have is 1 basic java programming class in high school.

What are the different languages and what are their purposes?
Member
Posts: 13,425
Joined: Sep 29 2007
Gold: 0.00
Warn: 20%
Apr 16 2015 10:54pm
Quote (Shakti @ Apr 17 2015 12:02am)
I just changed my major to software developing. The only experience I have is 1 basic java programming class in high school.

What are the different languages and what are their purposes?


List of programming languages: https://en.wikipedia.org/wiki/List_of_programming_languages

What they're used for: To program shit.

Stupid questions get stupid answers in the IT field.
Member
Posts: 16,404
Joined: Mar 28 2009
Gold: 7.69
Apr 16 2015 11:38pm
Quote (AbDuCt @ Apr 16 2015 11:54pm)
List of programming languages: https://en.wikipedia.org/wiki/List_of_programming_languages

What they're used for: To program shit.

Stupid questions get stupid answers in the IT field.


How's it a stupid question if the person asking it is unknowledageable about the field and wants to talk with people who have experience? That was an unthoughtful response.
Member
Posts: 13,425
Joined: Sep 29 2007
Gold: 0.00
Warn: 20%
Apr 17 2015 01:00am
Quote (Shakti @ Apr 17 2015 01:38am)
How's it a stupid question if the person asking it is unknowledageable about the field and wants to talk with people who have experience? That was an unthoughtful response.


Reconstruct your question into something more specific. Maybe include specific language.

Else you will just get a giant list of

C: To make computer shit work
Java: To make computer shit work
C++: To make computer shit work
C#: To make computer shit work
Ruby: To make computer shit work.

There are also probably over a hundred languages.
Member
Posts: 62,215
Joined: Jun 3 2007
Gold: 9,039.20
Apr 17 2015 01:13am
Quote (Shakti @ Apr 16 2015 11:38pm)
How's it a stupid question if the person asking it is unknowledageable about the field and wants to talk with people who have experience? That was an unthoughtful response.


Member
Posts: 6,481
Joined: Jul 5 2009
Gold: 0.70
Apr 17 2015 10:51am
I'll break the standard and try to be helpful. Now to be fair - you asked sort of a bad question.

What are your interests? Do you want to do web development? Mobile app development? game development? Desktop applications?

Some Web Languages:
ASP.net/C#
PHP
HTML
Ruby
Javascript

Some Desktop Application Languages:
Java
C
C++

Scripting Languages:
Python
Perl
Javascript
Ruby
PHP
Bash

Android Development:
Java

iOS Development:
Objective-C


If you have more specific questions I or someone else could probably help you better.
Member
Posts: 13,425
Joined: Sep 29 2007
Gold: 0.00
Warn: 20%
Apr 17 2015 11:52am
Quote (mebeatyou @ Apr 17 2015 12:51pm)
I'll break the standard and try to be helpful. Now to be fair - you asked sort of a bad question.

What are your interests? Do you want to do web development? Mobile app development? game development? Desktop applications?

Some Web Languages:
ASP.net/C#
PHP
HTML
Ruby
Javascript

Some Desktop Application Languages:
Java
C
C++

Scripting Languages:
Python
Perl
Javascript
Ruby
PHP
Bash

Android Development:
Java

iOS Development:
Objective-C


If you have more specific questions I or someone else could probably help you better.


A very miniature list for such a broad question. OP should be happy.

But you forgot

Web languages:
C
C++
Python
VB6
C#
ANY LANGUAGE WHICH ALLOWS FOR SOCKET PROGRAMING

Desktop Applications:
ANY DAN LANGUAGE PRETTY MUCH

Scripting languages:
Okay well I can't complain here

Android Development:
Can also use ruby and other languages now via the jruby interpreter.

It's just a broad and stupid question really.
Member
Posts: 6,481
Joined: Jul 5 2009
Gold: 0.70
Apr 17 2015 12:36pm
Quote (AbDuCt @ Apr 17 2015 01:52pm)
A very miniature list for such a broad question. OP should be happy.

But you forgot

Web languages:
C
C++
Python
VB6
C#
ANY LANGUAGE WHICH ALLOWS FOR SOCKET PROGRAMING

Desktop Applications:
ANY DAN LANGUAGE PRETTY MUCH

Scripting languages:
Okay well I can't complain here

Android Development:
Can also use ruby and other languages now via the jruby interpreter.

It's just a broad and stupid question really.


Yeah I get that. I wasn't giving a completely comprehensive list - I was just naming some of the more common languages for specific applications.

There's no point in beating the dead horse of "bad question". I think he gets it, so I was trying to point him in the right direction to be thinking about what it is he really wants.
Member
Posts: 23,862
Joined: Aug 16 2006
Gold: 20.00
Apr 17 2015 06:04pm
basically, here is the ultimate TL;DR -


If you didn't google your question before asking it on this forum, you might want to reconsider the degree
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Apr 17 2015 06:30pm
Quote (mebeatyou @ Apr 17 2015 12:51pm)
I'll break the standard and try to be helpful. Now to be fair - you asked sort of a bad question.

What are your interests? Do you want to do web development? Mobile app development? game development? Desktop applications?

Some Web Languages:
ASP.net/C#
PHP
HTML
Ruby
Javascript

Some Desktop Application Languages:
Java
C
C++

Scripting Languages:
Python
Perl
Javascript
Ruby
PHP
Bash

Android Development:
Java

iOS Development:
Objective-C


If you have more specific questions I or someone else could probably help you better.


you forgot polish

Code
#include <stdio.h>
#include <math.h>

#define grawitacja 9.81

float CzasSpadku(float h)
{
return(sqrt(2.0*h/grawitacja));
}
float predkosc(float h)
{
return(grawitacja*CzasSpadku(h));
}
float Vkmh(float v)
{
return(3.6*v);
}
int main()
{
float w;

printf("Podaj wysokosc w metrach : ");
scanf ("%f",&w);
printf("Wysokosc : %0.2f [m]\n", w);
printf("Czas : %0.2f \n", CzasSpadku(w));
printf("P{redkosc : %0.2f [m/s]\n", predkosc(w));
printf("Predkosc : %0.2f [km/h]\n", Vkmh(predkosc(w)));
return (0);
}
Go Back To Programming & Development Topic List
12Next
Add Reply New Topic New Poll