Skip to main content

How to become software engineer || What is software engineer | programmer

What are a software engineer and programmer

   Actually, The person having knowledge about computer and programming language then we can say that those people are software engineers and programmers.

Basic Terminology of Technology


Software:

 The software is nothing but an "automatic machine" you already know about it google, Facebook, Instagram, youtube all these are software it will give 24/7 hours service every day. It does not stop.

programmer:

The people having those are developing the software and those peoples having a good command of programming language like c,c++, java... e.t.c so we can say that those peoples are programmers.
                                                         
How to become good software engineer


  1.  My journey start when I was in college that time I decide only I have to become a good "full stack developer"(it is one of the posts in the company) I start preparation that time to become a good programmer or software developer.
  2. . If you have learned basic about the computer like you have to understand PowerPoint, excel, Ms office, and so on technology. related things to develop our knowledge in computer.
  3.  If your basic you understand then you have to move on learning the simple language, like c,c++ and python (Python is going on very good because having a lot's of feature in python programming).
  4. I don't want to say that you learn so many languages. I am only recommended you to learn only one language and make a good programmer in this language once you complete one language in-depth than you can go to learn any other language. like java, ruby, and also you have to learn the framework of this language.
  5.  You have to practice logical coding to become a good programmer once you got a job company will teach you everything.
  6.  You have to only stay with the company. company will teach you everything whatever the company required. If you to learn your one and do this until the end of this project.
  7.  In a company, you have to become a good self-learner than only you can survive in the company for a long time.

finally, I will give you the conclusion to become a good software engineer. it is very simple I know so many developers he doesn't know the basic fundamentals about the computer he also becomes a full stack developer. in the company having a good post on this.

 You have to increase the interest in the programming language you have to learn to develop something new in our computer system. then the only way to become a good software engineer.

remember one thing in your mind if you then only we can get otherwise no way to develop this.


Thanks.....
 Regards by Er prince Kumar


"Take an action to become a good developer" Please comment and
   give the advice to improve it.

Comments

Popular posts from this blog

#Logic How to convert String Characters lower to upper and upper to low...

How to convert String Characters.  lower to upper and upper to lower How to Convert all the String character Upper and lower . If String character is lower than convert Upper If it is Upper than you have to convert a lower. I am going to introduce it is a very simple and easy way. String Conversion is very easy through the toUpperCase() and toLowerCase(); Method But I am going to do this Question without using the Inbuilt method in the class. You have to do this Only For logical coding Question. So, Finally, I am going to do this Question step-by-step if you want to watch videos than you can watch. In these videos, I discuss this question in a very simple and easy way. You have to take one class with the main method.                class Test{                 public static void main(){                    //your logic ...

Top 97 logical coding Question | for Freshers for getting a job in MNC Company | by er prince kumar

            Top 97 logical coding Question  for Freshers  If you do this you will become good logical programmers Write a Java program to perform input/output of all basic data types. Write a Java program to enter two numbers and find their sum. Write a Java program to enter two numbers and perform all arithmetic operations. Write a Java program to enter the length and breadth of a rectangle and find its perimeter. Write a Java program to enter the length and breadth of a rectangle and find its area. Write a Java program to enter the radius of a circle and find its diameter, circumference, and area. Write a Java program to enter the length in centimeter and convert it into meter and kilometer. Write a Java program to enter the temperature in Celsius and convert it into Fahrenheit. Write a Java program to enter the temperature in Fahrenheit and convert to Celsius Write a Java program to convert days into years, weeks and days....

Java objective question for written Test | Java written test objective question

                               Java objective question All the best important question ------------------------------------------------------------------------ 1. Answer: Illegal combination of final and abstract class 2. Answer: 4 3. Answer:    error: bad operand types for binary operator '=='                 System.out.println("Helo"+10==10); 4. Answer:   error: integer number too large                 System.out.println(08); Q5. ====  class Nit { public static void main(String[] args) { m1(2); } public static void m1(int i) { if (i >= 0) { m1(i - 1); } System.out.println(" " + i); }} output:  -1  0  1  2 ================================== Q.2 ------ ...