Skip to main content
4 answers
4
Asked 1104 views

Hello,Good morning or day or night I know we dont have thesame time my question is all about "How can I program a computer"

Want to know

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

4

4 answers


2
Updated
Share a link to this answer
Share a link to this answer

Cody’s Answer

Check out codeacademy.com. It's free and you can choose what language you want to learn. I'd recommend starting with javascript or python. Good luck!

2
2
Updated
Share a link to this answer
Share a link to this answer

Charles M’s Answer

There are lots of ways to learn how to program a computer. The one I like to tell people about is www.raspberrypi.org. there are so many projects on that web site that you can do that will teach you haw to program a computer. many of them do not require any money. you just download the software.


Scratch is a programming language that you can download for free that will help you learn to program. It is built into the Raspberry Pi computer, but you can download it for practically any computer.


Did that answer your question?


Another interpretation of your question is, how does a program make things happen on the computer?


Basically a computer is an electronic circuit that take in input in the form of high and low voltages in different patterns and performs mathematical and logical operations on the patterns and then outputs the results in the form of high and lo voltages in different patterns.


Computers use binary numbers and logic circuits. A one is a high voltage. a zero is a low voltage. The place values in binary numbers work same as base 10 numbers except they are in base 2. the number 101 in base ten says, take 1, one hundred, add it to 0 tens and add it to 1 ones. Ten is 10 to the power of one. One hundred is 10 to the power of two, and 1 is 10 to the power of zero. In base 2, 101 says take 1 four, add it to 0 twos and add it to 1 one. Two is 2 to the power of one. Four is 2 to the power of two, and 1 is 2 to the power of zero. 101 in base two is 4 + 0 +1 = 5.


Electronic circuits can also perform AND, OR and NOT functions with the patterns of high and low voltages. If a high voltage is considered True and a low voltage is considered False, the NOT function says, True is NOT False, and False is NOT True. (t makes the low voltage be a high voltage. The AND function says false AND false is false, true AND false is false, false AND true is also false and True AND True is True.


Engineers combine millions and millions of transistors into circuits that can add two binary numbers, compare binary numbers perform the logic functions on these numbers and lots of other things. They can also store values into memory and retrieve them from memory. Certain pattern of binary numbers are interpreted by the computer to be instructions as to what to do with these binary patterns stored in memory. move them from one location to another, add them, subtract them, compare and do one thing if the result is true and something different if the result is false.


So programming the computer is arranging the binary patterns that are interpreted as instructions, into a sequence that solves a particular problem. The main tools used to program computers is an assembler or a compiler. These translate English-type words that humans can read into the binary patters that the computer can understand. For example, LDA 27 is a human code for the computer instruction that says to the computer, load 27 into the memory register location labeled A.


B = B+A is human instructions for take the value in register B and add to it, the value in register A and then put that sum into register B.


How the computer makes things happen is the high and low voltages drive lights to tune on, motors to turn on, and that kind of thing.


Scratch is a programming language that can cause images to appear and disappear, move from one location to anther and play sounds and things like that.


did that answer your questioning or just confuse you?

2
0
Updated
Share a link to this answer
Share a link to this answer

Snow’s Answer

I wish i had the answer for you but if I was you, I would look for a profile of a programmer and they may be able to give you an answer. Also, there are many languages of programming so you would want to narrow down which programming language you are interested in. Have you tried anyone at Microsoft or Google? I bet they have some programmers who can help you. Good luck!

0
0
Updated
Share a link to this answer
Share a link to this answer

Gary’s Answer

If you are a student in grade five though twelve you might have a coding class available in school or in a private learning company in your town. Coding is an introduction to what used to be called programming.. You can also visit your local Apple store or store that sells computers (Staples, Office Depot, etc.) My first real job when I was in my early twenties was with IBM. After the introductory training I felt as if I had been programming. You can also go online and ask your same question on ask.com and see if that provides additional information,
0