Skip to main content
4 answers
4
Asked 1766 views

What IS software engineering all about

I am femete, a student studying software engineering in siantou university Yaoundé (Cameroun). M'y dream is to becam a genius in software engineering #software-engineer

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

4

4 answers


2
Updated
Share a link to this answer
Share a link to this answer

Mary Ann’s Answer

For me, software engineering is about solving problems, continually learning new concepts and technologies, and questioning your assumptions about how things should work. If you're on a team, it's also highly collaborative, even if a lot of it takes place asynchronously over version control and chat.

Over my career, I've gotten better at taking a step back (or 10) when I get stuck, not being biased toward my ideas because they're mine, and being comfortable thinking through possible solutions and weighing them against each other. I think this, as much as learning new technologies, has made me a better engineer.

It's also so hard to know everything, so knowing where to find answers (Stack Overflow) and how to ask questions is incredibly important.

Mary Ann recommends the following next steps:

Pick a project and learn how to build it, allowing you to learn and to have something to show potential employers.
Learn JavaScript and use it to do web front end, mobile, or server programming.
2
2
Updated
Share a link to this answer
Share a link to this answer

Shaurya’s Answer

Software Engineering is all about creating solutions using computers. In this computer age, software engineering is undoubtably the most impactful trade. As a software engineer, you will be expected to work on a specific problem or scenario, and then figure out a solution which can be implemented digitally. You should have good understanding of how computers work and how to program them using programming languages. The work computer itself is very broad and can refer from a standalone PC, a shared server or a cloud-based platform . Applications of software engineering are truly endless.

Shaurya recommends the following next steps:

Visit https://en.wikipedia.org/wiki/Software_engineering
Take a course on Python or some other popular programming language
Enroll in a course related to software engineering
2
0
Updated
Share a link to this answer
Share a link to this answer

Leo’s Answer

I agree with the previous answer, but there's something else you should know: Software Engineering is also about being tenacious and being able to deal with frustration.

When you create code, you'll spend ~20% of your time writing the solution (the code) and ~80% of the time fixing the code you just wrote.

When you code something, you'll inevitably make mistakes. The main problem is that computers don't do what you want them to do: they do what you *tell* them to do. Many times, the disconnection between what you want, and what you tell the computer isn't obvious. So you'll spend a lot of time just trying to understand what's wrong.

On top of that, there's errors that break other things in very creative ways, and there's errors when the computer doesn't even understand what you're saying.

Very often, my work day looks like this: "Today, I'm going to do X. Oh wait, in order to achieve X, I first need to do A, B, and C. Oh wait, A needs some additional steps. OK, that's taken care of. Oh wait, now nothing's working because I just broke it. What? The day's over already? Oh well, I'll eventually get to do X."

So, if you take all that into consideration, there's a lot of "I want to do this, but I can't because I have to fix other stuff". That can lead to frustration. In fact, I would argue that you'll *intentionally* put yourself in the path of frustration every day. So you'll need lots of tenacity and patience.

But, in the end, it's all worth it. When you finally solve something, you get a great sense of satisfaction.
0
0
Updated
Share a link to this answer
Share a link to this answer

Tim’s Answer

The others are answers are great.

I would just add that software engineering is really about creating solutions that are used by humans across the globe and the goal is to make those tasks that we all do on our phone, computer, or even in person at a device like an ATM, Point of Sale, or Self Checkout machine in a grocery store.

The goal of a software engineer is to make things simple by using technology for end users.

You can start simple with something like python and then grow from there.

Good luck.
0