answersLogoWhite

0


Best Answer

The process of translating instructions into signals the computer can execute has different names, depending on the type of instructions considered.

In the end, the micro processor reads a pattern of (typically) 8, 16 or 32 binary signals forming one instruction (or part of one instruction). The micro processor's hardware decodes this pattern to execute the instruction. Characteristic for the decoding is that this is a predominantly hardware-controlled implicit process; no extra steps or tools are required. Decoding is an intrinsic part of every micro processor.

The process of translating human-readable instructions of machine language into the aforementioned binary signals is called assembly, and uses a software tool called an Assembler to translate a human-readable form of a single machine instruction (and sequences of those) into (sequences of) patterns of binary signals, so-called machine instructions.Characteristic for the assembly translation is a one-to-one relationship between the human-readable form and the binary form of the same instruction. The set of instructions in this language is called the Assembly language, and is specific to each micro processor family, sometimes to each model within a given family.

The process of translation instructions expressed in a higher-level language into machine instructions (sometimes translating into Assembly language as an intermediate step) is called compilation, using a tool called a Compiler.Characteristic for compilation is a 1-to-many relationship between the high-level language instruction and the corresponding machine instructions.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

decoding. but, then for a program, after it's written in some kind of language, you need to use a compiler to convert that into binary code. 1s and 0s.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

decoding

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Decoding

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Multiply matrices

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What refers to the process of translating an instruction into signals the computer can execute?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What term refers to the process of translating an instruction into signals the computer can execute?

decoding


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.


define the Fetch-Execute cycle?

the Fetch-Execute cycle is the process by which a computer retrieves a programmed instruction from its memory, determines what actions the instruction dictates, and carries out those actions.


How does the CPU keep track of which instruction to execute next?

The instruction register holds a pointer to the current instruction (in working memory) while the next instruction register points to the next instruction (the first instruction immediately after the current instruction's operands). If the current instruction is a jump instruction, it can change the next instruction register, allowing the program to branch to a new instruction once the jump instruction is processed. The next instruction pointer is automatically moved into the current instruction register once the current instruction has been processed. The entire process of executing an instruction is known as the fetch-decode-execute cycle.


Where is a byte's temporary storage location in memory?

A byte's temporary storage location in memory is RAM. The process of translating instructions into signals the computer can execute is a tower.


What is the fetch-decode-cycle on a computer?

when we execute a program, the starting address is loaded in the program counter. Then for each instruction the processor goes through fetch-decode-execute states. At the fetch state the instruction code is fetched then decoded to understand what exactly has to be done. Then finally it executes that instruction. This process goes on till it reaches the end of the program.


The process of translating a task into a series of commands that a computer will use to perform a task?

Multiply matrices


Explain steps involve in instruction execution cycle?

The two-phase process for executing instructions on a typical CPU involves a fetch step and an execute step. Fetch is where the instruction is loaded from memory and execute is where the actions detailed in the instruction are carried out.


What is the process of instruction the computer to solve a problem?

Programming is the process of instructing a computer to solve a problem.


What is instruction execution?

The definition of instruction execution is the process of carrying out an instruction by a computer. This is what was formerly known as a command execution in DOS.


Is the process of translating a task into a series of commands that a computer will use to perform the task.?

Machine Language


What are the four steps of the machine cycle and describe what occurs at each step?

fetch decode execute and store in that order.... i do not know the description of each stage i need the answer to that myselfmachine cycle is also called instruction cycleCPU performs following steps to execute an instructionFetchDecodeExecuteStoringFetchload instruction from the memory to execute.this operation performed by control unit.Decodedetermine what the instruction is telling the computer to do,and what operation should be taken.Executeafter decoding and getting the required result,CPU finally execute instruction by ALU(arthematic logic unit).Storingthe process of writing the result to memory is called storing or the process of storing the generated result to the main memory.