answersLogoWhite

0


Best Answer

Machine language is nothing but numeric codes. Because humans have a difficult time remembering numeric codes, manufacturers of microprocessors create mnemonics; these sets of mnemonics are called assembly language. Each processor family has its own set of mnemonics, or assembly language, so assembly for the Intel processor used in many PCs is different from the assembly for a Motorola processor. In fact the assembly for different processors made by the same manufacturer will have assembly that differs, sometimes by a little, sometimes significantly. A quick example of one type of Motorola assembly, to clear 10 32-bit memory locations might look like this:

movea #$6000,ao

move.l #10,d7

10$

clr.l (a0+)

subq.l #1,d7

bne.s 10$

rts

User Avatar

Wiki User

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

Wiki User

8y ago

Machine code is an encoded sequence that is specific to a particular type of machine. In computing, machine code is encoded using binary notation. Every computer platform has its own set of instructions and architecture, and machine code must be specifically engineered separately for each platform. Code written specifically for an IBM mainframe will not operate upon an Apple Mac, for instance.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Some examples of programming languages include Java, C++, PHP, and Python. Each is designed for a specific task and has its own, unique features.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

Some programming languages:

  • C, C++, C#
  • Lisp
  • Pascal, Turbo Pascal
  • Java
  • Cobol
  • Fortran
  • Prolog
This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Basic & Pascal.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are examples of machine level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Examples of Low-Level Programming Language?

Machine code & Assembly language.


What are the examples of low level language?

It are machine code and Assembly.


High level to Machine level language is converted using?

high level language is converted to machine level language using a compiler or an interpreter


What is the difference between high level language and machine language?

The difference between high level languages and machine languages are as follows: 1)Machine language uses binary numbers/codes but high level languages(HLL) use key words similar to English and are easier to write. 2)Machine Language is a Low level language and is machine dependant while HLLs are not.


What is meant by Machine level language?

A language at the level of the machine it runs on. AKA Machine code, it's the underlying language that computer CPU's speak.


What are examples of high lavel language?

The term high-level refers to the amount of abstraction between the code you write and the native language of the machine. Low-level code is a symbolic code that maps 1:1 with the machine code, thus assembly is a low-level language. All other languages that employ a compiler or interpreter to create the machine code are considered high level languages. However, C and C++ are examples of high-level languages that also allow low-level programming, and are often called mid-level languages for that reason.


What is required to convert a high level language into machine language so as to execute it later?

we need compiler to convert high level language in to machine language


Why there is a need for converting high level language into machine level language............ why cant we use high level language directly in computers?

Machine code is the native language of the machine. The machine does not "understand" any language other than its own native language. As such, all other languages, including low level assembly languages, must be compiled or interpreted in order to produce the required machine code.


What is meant by machine language?

A language at the level of the machine it runs on. AKA Machine code, it's the underlying language that computer CPU's speak.


In which language we don't need transaction?

machine level language


One instruction in high level language corresponds to one instruction in machine language?

No. Generally, one instruction in a high level language corresponds to many instructions in machine language.


What does an interpreter do?

Interpreater translate the high level language into machine level language line by line