Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
As a new member I want to know more about this community and it will be very helpful for you guys to suggest which language will be the best for current generation software needs. As I am also a student in this field any suggestion or recommendation in this area would be very helpful.

thank u
Posted

Well, the best way to learn about the community is to get involved and look around.

Suggesting a language is not really a valid comment someone could make without knowing what the requirements are. This sort of knowledge comes with time and experience.
 
Share this answer
 
Suggesting language? ...... It depends.

Anyway here a good link for you on learning. Education Needed[^]
 
Share this answer
 
Well,as you are a newbie in programming world,so it is common to ask someone or raise something like your question in your mind is very common.If you ask me,then i should say that doesn't really matter.Yes,believe me, language specification really doesn't matter in case of programming or application development.

The only thing that you need to careful about the logic behind the programming.Yes, this is the thing that sits over the top of any programming language.If your logic is clear,then you can do a program in whatever language you want.

Let's discuss about a very simple program that would sum 2 numbers.See code examples:
In Java:
Java
int num1 = 10;
int num2 = 20;
int sum= num1 + num2;
System.out.println("sum is " + sum);

In C#:
C#
int num1 = 10;
int num2 = 20;
int result = num1 + num2;
Console.WriteLine("sum is " + result);
Console.ReadKey();

In Python:
Python
x = 10
y = 20
sum = x+y
print(sum)

So now tell me,does language really matter,only considering some differences between symbols?
 
Share this answer
 
v5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900