Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

How to know if what language in your program is going to be used?

–2 votes
asked Nov 23, 2020 by Donna Mae Fortu (100 points)

1 Answer

+1 vote
answered Nov 24, 2020 by Peter Minarik (86,040 points)
There is no straight answer.

If you are playing around with programming for yourself, then you have the liberty to choose the programming language. There are languages that are more suited for certain tasks.

E.g. performance critical tasks are often written in C/C++, but even Assembly and micro controllers are considered for certain tasks.

If you want to quickly create UI, the C# is a good choice.

For Web programming, you'll need to know HTML, CSS, Java Script, you can use C#, Python Java and many more languages.

If you want platform independent code, you'll look for C/C++, Java, Python, Go, etc.

Do you need databases? You'll probably need to know some sort of SQL.

However, if you go and work for a company, most probably their technical leaders have already decided on a language(s) to use. It's highly probable that you won't start from scratch, but join a team who has a code base already.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...