answersLogoWhite

0

The processor (sometimes called the Central Processing Unit or CPU) is a piece of circuitry that is able to execute instructions. The instructions are given to the CPU in the form of electrical signals applied to the pins (wires) that lead to the inside of the processor. Generally, a positive electrical voltage represents the binary digit 1, and zero or perhaps negative voltage represents a 0. If we have lots of pins, we can specify a large variety of different patterns of 1's and 0's, each corresponding to a different instruction. (Data is also represented this way) So, in theory, you could buy a bunch of simple switches and hook them up to the processor, and specify instructions by hand. In practice, this would be silly, but this is essentially-how programming was done back in the 1950s with the first digital computers.

In a modern computer, the instructions are actually stored in memory (RAM) before being given to the processor. Usually, the get into the memory only after being read from your hard disk, which also stores patterns of 0's and 1's using magnetism. When you click on an application, you are reading the instructions from your hard disk into memory, from where the processor is able to access it and begin execution.

Lastly, your computer has a little bit of permanent or semi-permanent memory that contains special instructions for starting up when you turn it on and some other special situations. BIOS is an example of that.

Peripherals like sound cards and video cards are generally told what to do by the CPU, and don't give the CPU instructions.

Got that off a website...Yahoo answers XD... NOT MY WORDS!!! I do not take credit for it. Anyways i think its the processor...

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is instruction cycle with interrupts?

The instruction cycle is the basic operation cycle in a computer. This is what will take in data, process it and execute as required.


What is the difference in between instruction and information given to a computer?

Instruction refers to specific commands or code given to a computer to perform a task or operation, such as executing a program or carrying out a calculation. Information, on the other hand, refers to data provided to the computer for processing, storage, or retrieval, such as input data or output results. In essence, instructions tell the computer what to do, while information is the content or data on which the computer operates.


Computer and are capable in giving data information?

1. yes because computer and man are capable in giving data and information..


The process of saving data and instruction premanently is known as?

persistent storage


How does a personal computer process information?

In two basic stages: i) process - the computer needs, and is easily provided with, instructions about what to do with the data, and ii) data - readily accessible information that is accessed, operated upon, and results displayed by the instructions stored in the computer's instruction program.


Computer process output information into input data?

No. Computer process (input) information into (output) data.


A basic instruction that can be interpreted by a computer generally has?

A basic instruction that can be interpreted by a computer generally has an operation code (opcode) that specifies the action to be performed, such as addition or data movement. It may also include operands, which are the data or memory addresses involved in the instruction. Together, these components enable the computer's processor to execute tasks efficiently.


Define input devices?

This is the process of entering data and programs in to the computer system. You should know that computer is an electronic machine like any other machine which takes as inputs raw data and performs some processing giving out processed data. Therefore, the input unit takes data from us to the computer in an organized manner for processing.


The components that process data in a computer are where?

The components that process data are located in the system unit


What is a computer why it is known as data processor?

A computer is known as a data processor because that's what it does. Process data (programs)


Is a process that allows the CPU to receive a single instruction and then execute it on multiple pieces of data rather than receiving the same instruction each time each piece of data is received?

"SIMD, which stands for 'single instruction, multiple data,' is a process that allows the CPU to receive a single instruction and then execute it on multiple pieces of data rather than receiving the same instruction each time each piece of data is received."(Pg. 434, A+ Guide to Managing and Maintaining Your PC)


What is the Flynn's Classification with examples?

First of all as we know the CPU comprises of The Registers,The ALU Unit and the Control Unit.Processing of the data is done in CPU Registers (an area or a memory where processing takes place). M.J.Flynn suggested these architectures for enhancing the computational speed of the computer: 1. Single Instruction Single Data (SISD): Single instruction is performed on a single set of data in a sequential form.Most of our computers today are based on this architecture.Von Neumann fits into this category.Data is executed in a sequential fashion (one by one). 2. Single Instruction Multiple Data (SIMD): Single Instruction is performed on multiple data.A good example is the 'For' loop statement.Over here instruction is the same but the data stream is different. 3. Multiple Instruction Single Data (MISD): Over here N no. of processors are working on different set of instruction on the same set of data.There is no commercial computer of this kind also these are used in Space Shuttle controlling computer (all the buttons you must have noticed in the control center). 4. Multiple Instruction Multiple Data (MIMD): Over here there is an interaction of N no. of processors on a same data stream shared by all processors.Now over here if you have noticed a lot of computers connected to each other and when they perform a task on the same data (data is then shared).If the processing is high it is called Tightly Coupled and Loosely Coupled vice-versa.Most Multiprocessor fit into this category.