A set of instructions compiled into a program that performs a particular task is known as:

We’ve updated our privacy policy so that we are compliant with changing global privacy regulations and to provide you with insight into the limited ways in which we use your data.

You can read the details below. By accepting, you agree to the updated privacy policy.

Thank you!

View updated privacy policy

We've encountered a problem, please try again.

An assembler is a program that takes basic computer instructions and converts them into a pattern of bits that the computer's processor can use to perform its basic operations. Some people call these instructions assembler language and others use the term assembly language.

Here's how it works:

  • Most computers come with a specified set of very basic instructions that correspond to the basic machine operations that the computer can perform. For example, a "Load" instruction causes the processor to move a string of bits from a location in the processor's memory to a special holding place called a register. Assuming the processor has at least eight registers, each numbered, the following instruction would move the value (string of bits of a certain length) at memory location 3000 into the holding place called register 8:
          L        8,3000
  • The programmer can write a program using a sequence of these assembler instructions.
  • This sequence of assembler instructions, known as the source code or source program, is then specified to the assembler program when that program is started.
  • The assembler program takes each program statement in the source program and generates a corresponding bit stream or pattern (a series of 0's and 1's of a given length).
  • The output of the assembler program is called the object code or object program relative to the input source program. The sequence of 0's and 1's that constitute the object program is sometimes called machine code.
  • The object program can then be run (or executed) whenever desired.

In the earliest computers, programmers actually wrote programs in machine code, but assembler languages or instruction sets were soon developed to speed up programming. Today, assembler programming is used only where very efficient control over processor operations is needed. It requires knowledge of a particular computer's instruction set, however. Historically, most programs have been written in "higher-level" languages such as COBOL, FORTRAN, PL/I, and C. These languages are easier to learn and faster to write programs with than assembler language. The program that processes the source code written in these languages is called a compiler. Like the assembler, a compiler takes higher-level language statements and reduces them to machine code.

A newer idea in program preparation and portability is the concept of a virtual machine. For example, using the Java programming language, language statements are compiled into a generic form of machine language known as bytecode that can be run by a virtual machine, a kind of theoretical machine that approximates most computer operations. The bytecode can then be sent to any computer platform that has previously downloaded or built in the Java virtual machine. The virtual machine is aware of the specific instruction lengths and other particularities of the platform and ensures that the Java bytecode can run.

This was last updated in November 2005

Continue Reading About assembler

  • Assembly Internet Resources identifies a number of books, classes, and other Web sources about assembly (assembler) language.

Dig Deeper on Data center hardware and strategy

  • A set of instructions compiled into a program that performs a particular task is known as:
    binary file

    A set of instructions compiled into a program that performs a particular task is known as:

    By: Robert Sheldon

  • A set of instructions compiled into a program that performs a particular task is known as:
    bytecode

    A set of instructions compiled into a program that performs a particular task is known as:

    By: Robert Sheldon

  • A set of instructions compiled into a program that performs a particular task is known as:
    compiler

    A set of instructions compiled into a program that performs a particular task is known as:

    By: Robert Sheldon

  • A set of instructions compiled into a program that performs a particular task is known as:
    Why is Java platform-independent?

    A set of instructions compiled into a program that performs a particular task is known as:

    By: Cameron McKenzie

What type of memory stores software programs and instructions while the computer is turned on?

Read-only memory, or ROM, is a type of computer storage containing non-volatile, permanent data that, normally, can only be read, not written to. ROM contains the programming that allows a computer to start up or regenerate each time it is turned on.

What are the two types of slack space?

However slack can be broken down into two different areas, RAM slack and File Slack. RAM slack is the slack between the end of the logical file and the rest of that sector. File Slack is the remaining sectors to the end of the cluster. To put it another way RAM slack is the slack at the byte and sector level.

What is placed on a hard disk drive by a website to track certain information about its visitors?

A cookie is a small data file issued to visitors by certain Web sites, and stored on the visitor's hard drive.

What is digital forensic investigation?

Digital forensics is a branch of forensic science that focuses on identifying, acquiring, processing, analysing, and reporting on data stored electronically. Electronic evidence is a component of almost all criminal activities and digital forensics support is crucial for law enforcement investigations.