Skip to main content

Why We Need To Learn Programming?

 Hello!😃 Buddies How Are You. 😍

        I will tell you a million-dollar answer to why we need to learn any programming language. Before starting our answer, we must know what is programming language right. Programming is used to interact with our machines, we humans have different languages based on different locations right. Let's assume a situation you and your friend went to China you don't know Chinese but your friend know Chinese very well So he will help to explain everything right. Humans have different languages like that machines have their own language is called Binary language. Is written in 0's and 1's. 

        I will explain with an example, take a simple word like Hello so here if we want write Hello we need alphabets and we need to arrange a format right. It is easy and we can read that word. now we translate our Hello word into Binary language. After converting it will look like this " 0100000101011000110001111 " 

        Just 5 letters of a word are too lengthy right. Is it possible to learn Binary code, no right?. To overcome this problem programming is introduced we use software to interact with machines and using the software we create commands to perform a task. This is a short introduction to programming.

 

Why We Need To Learn Programming?

        First, forget about jobs and money-making these are secondary points because if we are good at programming we will definitely get a good job. Here our point is not getting a job our point is why we need to learn programming language.


Buddies, Please Note Down My Point

1) Analytical Skills
2) Problem-Solving Skills
3) Unique Style Of Thinking
4) Improve Mental Stability

        These 4 added after your learning programming. Whatever your goal is in your life just do it once in your life. I will tell you it will definitely change our lives.


         Buddies, if you want to start programming these languages are available to us.
1) C
2) C ++
3) Java
4) Python etc..,  if you want to start python I will provide a python free course it will available on my YouTube Channel at  'Python Geeks'. Below I mention a video please go throw.

Comments

  1. చాలా బాగుంది ఈ ఆర్టికల్ , బ్లాగర్స్ గ్రూపులో మీ లింకు చూసి వచ్చాను, వివరించే విధానం ఆకర్షిస్తోంది

    ReplyDelete
    Replies
    1. Chala thanks andi me support ki🤗🤗🤗

      Delete

Post a Comment

Popular posts from this blog

Data Types - 1 (Numeric, & Boolean)

 Hello Buddies 😍                                    Data Types is an important concept in any programming language. Our daily life is connected with data. I will tell you a examples  1) Pics, Video & Documents 2) Stock Market  3) Students Marks Report etc.,  Now let's start our topic data types. In python data is classified into these types. 1) Numeric Type:-             INTEGERS :-      + ∞ to -  ∞ between these numbers are called integers           COMPLEX NUMBER      Complex number is a containing of imaginary values is called Complex Number.           Float Numbers    Decimal numbers are called Float Numbers. Ex: - 2.6,0.3 etc.., BOOLEAN TYPE In this data type we have only two values. They are True or False I will explain remaining...

Python Coding Interview Questions Part 7 video explanation

 Hello Buddies,                     This blog is about python interview questions How to solve with step by step process i will explain. So please read it carefully try to understand coding logic. let's start. Question : Write a code to sum of squares of n natural numbers?                         Before dive in to the code explanation 1st look at what is natural number and what is sum of square n natural number. Natural number is positive integers they start from +1 to +infinity. and it denoted by N = {1,2,3,4,.........}. Sum of squares of n natural numbers are 1^2 +2^2+3^2......... So we need to find sum of n natural number like ex : if we take 4 we need to do 1^2+2^2+3^2+4^2 = 30. So this is sum of squares of n natural numbers. Let's look at code part Code :  First take n input and sm = 0 it store sum value. and for i in range we all know it chec...