ABCD(AnyBody Can Do)… Programming

Komal Raj
AltCampus
Published in
2 min readFeb 2, 2019
Background Image

There are lots of programming languages in the world, but the basic structure and approach to solving a problem in any programming language are the same. For Example- Every tree’s look different, some are long, some are short or other different things but every tree has the same structure means each has root, branches, leaves etc.

In this article, I will tell you about how to think easily to make any application. so here some steps to think easily for making any application.

# See the problem-

If you have the demo of Application, firstly you look application as like a user. And you saw what is this application and what is doing this. what is an important part of this application? and more things. when you completely see all functionality and understand then you start thinking about how to make this.

# Break down problem points-

After knowing problems note the all necessary points and break down it. Like this, if you have a problem to make calculator so generally, your breaking points are addition, subtraction, multiplication, and division. you can write pseudocode for all problems. Pseudocode is an informal way of programming description that does not require any strict programming language syntax because it is just like the English language. And it is a good way to write points before coding for the programmer. If you have noted all points then go to the next step.

# Design Algorithm -

The algorithm is a sequence of steps that gives a method of solving a problem. so an algorithm is the best approach to breaking any problem with logically. you can understand any problem in an easy way. so make the algorithm for that problem.

# Think about the approach -

when you Completed the algorithm then start thinking about an approach. it means which approach is good for writing code. you just think about the way like functional or object-oriented, it totally depends on you. In every language have some way to write the program so you choose a good approach.

# Program Coding -

If you have thought of approaches then now start to writing code. when you are writing code then apply all rules of coding style, because the perfect and clean code is a big thing of any programmer. Sometimes some error comes in the program due to a small mistake. Therefore, we should read the error and correct it. if your coding style is correct, then there is less chance of a syntax error.

# Test the code -

After coding, A good programmer also a tests his program and makes more useful. sometimes code has no error but maybe they have a logical error. And logical error only shows in testing that the program is working correctly or not.

--

--