Nikku
Follow
Posted 4 year ago

How does coding and how does it work?

2 Answer(s)
Rahila Ahmed
Follow
Posted 4 year ago Rahila Ahmed

Coding is the process of using a programming language to get a computer to behave how you want it to. In Python, every line of code tells the computer to do something, and a document full of lines of code is called a script. Each script is designed to carry out a job.

Seema Kumari
Follow
Posted 4 year ago Seema Kumari

Almost all programming languages work the same way: You write code to tell it what to do: print("Hello, world"). The code is compiled, which turns it into machine code the computer can understand. The computer executes the code, and writes Hello, the world back to us.