4

I have been learning C, C++, Java and Python but I want to go into web development and I will soon start learning its languages and technologies. Would it be useful to put projects made in the above languages on my resume or should I only put projects related to web development?

Philip Kendall
  • 110,342
  • 65
  • 264
  • 337
User
  • 41
  • 2

3 Answers3

8

Yes. You should definitely put C, C++, Java and Python on your resume regardless of which software positions you apply for.

These skillsets will show the hiring managers that, overall, you have a variety of skills, and can learn and adapt quickly to new technologies. In general, these skillsets will always make you a valuable developer.

Furthermore, in more specific cases, the backend legacy code of some companies may still run on C++, Java, and Python, and they will appreciate candidates with these experiences (especially when you want to be a full-stack developer).

At the same time, if you want to be a web developer, then also spend more time to learn, practice, master, and then put the particular web development languages, API, frameworks, and skillsets on your resume.

Job_September_2020
  • 21,915
  • 4
  • 41
  • 72
3

A language or framework is only a small part or software development.

There are lots of shared tools and skills between projects of different languages and platforms. Take for example source control (like git) or just requirements gathering. You can be the best programmer there is, if you misunderstand the requirements, the software will fail.

If you have developed software before, even with different languages or frameworks, that is very valuable experience.

nvoigt
  • 138,739
  • 73
  • 318
  • 416
0

I have been learning C, C++, Java and Python but I want to go into web development

I think you are not aware of what languages are popular for web development. Both JAVA and Python have extensive web development roots and ecosystems. So including them in your resume is a reasonable thing to do. However, showing that you can build web applications using these languages would be even better.

As for C and C++, I am not aware of any major frameworks based on these languages (I'm sure there is some masochist out there who will pop up and say "I use C for web development"), but they are good languages to have under your belt. But If you are working in an embedded realm, it is possible that you would be using these languages to construct user interface web pages.

Finally, I'd add C# to the list of languages to look at. It also has a strong web development ecosystem.

Peter M
  • 7,049
  • 2
  • 28
  • 40
  • IIRC ebay was run using C++ originally; but it's been years since the last time I ran across that statement so I assume they've long since migrated to a more conventional stack. – Dan Is Fiddling By Firelight Aug 28 '22 at 22:30
  • @DanIsFiddlingByFirelight Amazon originally ran C++. That's what I was writing services in there back in 2005- it was about 49% C++, 49% Java, 2% other (teams could make their own choices, and you heard rumors of one offs in weird languages. Although the two above were encouraged and given the most support). – Gabe Sechan Aug 31 '22 at 06:50