Skip to main content
6 answers
6
Asked 228 views

What is the difference betweens coding and programming?

Explain it in such a way a kid or a someone who isn't into tech would understand

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

6

6 answers


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

Francisā€™s Answer

Hey Chris! šŸ‘‹šŸ¤– Let me explain the difference between coding and programming in a way that even someone who isn't into tech could understand. Get ready for a fun analogy! šŸ˜„

Imagine you're a chef šŸ‘Øā€šŸ³, and you're going to make a delicious cake. šŸŽ‚ Coding is like following a recipe step-by-step to bake that cake. You have a list of ingredients (like flour, sugar, eggs, etc.) and a set of instructions (like "mix the dry ingredients," "beat the eggs," "bake at 350Ā°F for 30 minutes," etc.). You're just executing those instructions one by one, without really understanding why you're doing each step.

Programming, on the other hand, is like creating the recipe itself! šŸ“ It's the process of designing and writing the instructions (the code) that a computer can understand and follow. Just like a chef might experiment with different ingredients and techniques to create a new recipe, a programmer uses their problem-solving skills and creativity to develop a program that can solve a specific task or automate a process.

So, while coding is about following instructions, programming is about creating those instructions from scratch. šŸ’» It's like being the mastermind behind the recipe instead of just following it.

But don't worry, Chris! Both coding and programming are essential skills in the tech world, and they often go hand-in-hand. šŸ¤ Programmers write the code, and then other people (or even the programmers themselves) execute that code by coding.

Hope this analogy helps you understand the difference in a fun and easy way! šŸ°šŸŽ‰ Let me know if you have any other questions!
1
0
Updated
Share a link to this answer
Share a link to this answer

R. Ulisesā€™s Answer

As one answer mentioned before. They are in theory, a little different.

Coding: Following existing notations, recipes.
Programming: Creating those instructions, guides or recipes.

But in the practice, they are basically the same. They are generally interchangeables.
0
0
Updated
Share a link to this answer
Share a link to this answer

Mattā€™s Answer

Exact same thing. You might hear software engineering, software developer, and many more terms as well. But generally they are all interchangeable.
0
0
Updated
Share a link to this answer
Share a link to this answer

Samā€™s Answer

Those are synonyms for the same thing.

When you want to create a computer program, your write what's called the "source code" for the program. These are the instructions that the computer follows to make the program do what you want it to do.

The term "programming" also means writing the instructions that the computer follows to make the program do what you want it to do.

So, writing the "source code" is often called "coding" for short. And if you are "coding" a program's instructions, then you are "programming" too.
0
0
Updated
Share a link to this answer
Share a link to this answer

Fredā€™s Answer

I am not aware of any difference, let alone a significant one. I've always heard (and used) them interchangeably.
0
0
Updated
Share a link to this answer
Share a link to this answer

Sahil Siddharthā€™s Answer

Coding
- What it is: Typing instructions for a computer to follow.
- What you do: Write the exact steps for the computer to do specific tasks.
- Skills needed: Know the rules of a programming language and fix mistakes in the code.
- Example tasks: Writing the steps for a computer to add two numbers together, correcting errors in a computer program.

Programming
-What it is: Creating a complete software application, from the initial idea to making sure it works well.
-What you do: Plan, design, write the instructions, test the software, and keep it running smoothly.
- Skills needed: Understand how to solve problems, design systems, and manage the whole project.
-Example tasks: Designing a whole app, figuring out how different parts of the app will work together, writing the code, and testing it to make sure it works correctly.

Key Differences
1. Scope:
- Coding is just writing the instructions.
- Programming is everything from planning and designing to writing and testing the software.

2. Roles:
- Coders write the instructions.
- Programmers plan, design, write, test, and maintain the software.

3. Skills:
- Coders need to know the language rules and fix mistakes.
- Programmers need to understand how to build and manage a complete project.

In short, coding is like writing the steps for a recipe, while programming is like creating the whole recipe, making sure it tastes good, and keeping the kitchen running smoothly.
0