Skip to main content
8 answers
8
Asked 1427 views

What is class should I take if I want to major in computer programming?

#technology
#computer-software
#computer-science
#computer-programming

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

8

8 answers


1
Updated
Share a link to this answer
Share a link to this answer

Cecilia’s Answer

Any programming language can help. Like C or C++ or SQL.
1
1
Updated
Share a link to this answer
Share a link to this answer

Steve’s Answer

Start with the common languages first. For example, Java, JavaScript, Swift, C#, etc.
1
1
Updated
Share a link to this answer
Share a link to this answer

Joanne’s Answer

Math & computer languages.

Now . in the spirit of Steve Jobs, it never hurts to diversify your learning with some aesthetic or human-centered approaches.

The goal is always to make a product that someone wants to use. The languages and math sets will teach you how to make the product. The 'that someone wants to use' can be discovered by studying history or people in general.
Thank you comment icon Thanks a lot Shashank
1
0
Updated
Share a link to this answer
Share a link to this answer

Brett’s Answer

You'll see a variety of answers as to which programming language to start with. In truth you can start with any - the language matters less than learning the habits of abstraction and learning to balance being detailed enough without getting lost in the details.

That said, Python is widely used as a great first language - it contains all the fundamentals, works on many platforms (Windows, Mac, Linux, BSD, etc), and emphasizes the good habits that you can carry forward to other languages. There are many introductions to Python and introductions to programming (using Python) courses, tutorials, and videos available (for free!) online, as well as most schools that teach the topic having such courses.

People will often talk about math for future programmers, but the truth is that math beyond basic algebra itself is not a requirement for most programmers. However, LOGIC - this is necessary for all programmers, and that tends to be covered in Math classes.

Any number of skills can benefit a programmer, but for a new programmer the two lessons I would suggest are:

1) Learn Python - it may not end up being the language you get hired to program in, but it is almost universally accepted as teaching good, relevant material. Getting universal acceptance in the industry is HARD, so that's a glowing compliment.

2) Code - once you can do it, you need to practice. The more you code, the better you get. The more nuances you notice, the more places you say "there must be a better way" and then try to find it. The more you actually code the more it becomes natural to "see" how to put together a solution to a problem. Coding is creative problem solving, so just like artists must create and create and always recognize that they can do better, so must programmers.

If you have access to a computer, there is no reason to delay - you can start learning and start coding immediately. It may be slow, and at times frustrating, but it is also rewarding, and when you look back you can see how much you can do that seemed so daunting even a month before.

Brett recommends the following next steps:

Learn Python
Code a very small project
Keep improving your project/start new ones
Thank you comment icon If I were to write an answer, I would be lucky if it was half as legible and concise as yours! I would add learning about Computers and Operating Systems at a high level. Differences between embedded systems, consumer operating systems, distributed systems. You will get a good context about where the software you will be writing will live. You will be able to answer questions about if the software will be on a chip, on a server, in a browser. Nathan MacInnes
0
0
Updated
Share a link to this answer
Share a link to this answer

John’s Answer

Computer Science in college is more than just programming and it is relatively difficult. Expect four calculus courses, discrete math and several theoretical computer science courses (algorithms, data structures, etc.). These provide a very good foundation for computer science, but not everyone can pass them and might be too much if you just want to code. If your school doesn't have many computer courses, I'd take a free online course from EdX or Coursera or even enroll in an inexpensive coding boot camp. The key is to figure out if computer science is the right major for you BEFORE you get to college and spend lots of money.
0
0
Updated
Share a link to this answer
Share a link to this answer

kannan’s Answer

Hi somkid ,

you can focus on maths and computer programming ((like algorithms, design)and cloud-related courses (docker and container. there is lot of traction in cloud) and programming language (like python , java )
0
0
Updated
Share a link to this answer
Share a link to this answer

Nathan’s Answer

Some great answers have already been provided!

I would add, learning more high level concepts as well. Why software exists and where software exists. Differences between embedded systems, consumer operating systems, distributed systems. You will get a good context about where the software you will be writing will live. You will be able to answer questions about if the software will be on a chip, on a server, in a browser and what problems the software solves.

Try finding classes about Operating Systems, Software Requirements, Impact of Software on Society, Distributed Systems.

Nathan recommends the following next steps:

Operating Systems class
Software Requirements class
Impact of Software on Society class
Distributed Systems class
0
0
Updated
Share a link to this answer
Share a link to this answer

George’s Answer

Yeah, this is a question I wish I had asked somebody before I took a computer science degree. Here's what I'd tell myself :

- Math: Take your math classes seriously. You'll be taking a lot of them for your CS course and it really does matter when it comes to Logic and Algorithms and especially if you want to do something in computer graphics or gaming
- Adopt a Programming Language: Learn a language like Python and use it to build an application from end-to-end. Bonus points for Learning Java and using some form of SQL Database in your practice project
- Try to learn about: Operating Systems, Machine Learning, Software development, Agile programming

Good Luck
0