answersLogoWhite

0

mnemonic

User Avatar

Coty Bernier

Lvl 10
2y ago

What else can I help you with?

Related Questions

What are the short words that are use in assembly language called?

mnemonic


What is the nemonic of Microsoft?

in assembly language machine language instruction are replaced by English like words these words are called mnemonic


What are the short words that are used in assembly language called?

mnemonic


Are machine language and assembly language the same?

No, they are not the same. Assembly language uses mnemonic words to REPRESENT machine language; to be able to actually run it, a special program - a so-called assembler - then needs to convert it into machine language.


What is Compilation Process?

In simple words, it is the conversion of a high level language to an assembly level language. In C, it is the conversion of a .c file to a .s file


What are words that have special meaning in a programming language called?

Keywords or reserved words.


What is difference between machine code and assembly language?

Machine language is the actual instructions in computer memory that are fetched into the processor and executed. It is directly executable and consists of what look to most human beings like a bunch of hexadecimal numbers, though a few geeks such as myself can tell it is code instead of numbers. For example, the instructions executing interrupt 21, service 10, are: B410 CD21 Assembly language is a human readable as mnemonics, it translates on a one for one basis into machine language. The computer cannot execute assembly language directly, but human beings who are trained can understand it. The assembly language equivalent of the above instructions is: MOV AH,10 ; prepare for service 10 by putting 10 into AH INT 21 ; vectors into code established in the interrupt table


What are the words that a programming language has set aside for its own use?

Such words are called "keywords".


What is study of new words called?

The study of new words is called neologism. Neologism is the process of creating or incorporating new words or terms into a language.


What is the language of the words 'Jesuve saranam'?

It is a language from India called Telugu. It is a Dravidian language spoken by the Telugu in south-eastern India.


What do you call words that are spelled the same in the same language but have different meanings?

those words are called homophones


What type of computer languages uses English-like abbreviations for machine-language instructions?

The assembly languages provide human-readable mnemonics, one for each machine instruction. Most assembly language instructions have similarities to words from the English language (e.g. ADD, MOVE, LOAD). However, it is possible that assembly languages are defined in resemblance to other human languages, or none at all. For example, processors designed in and predominantly used in countries with a different language and script might define assembly instructions more familiar and easier to use by its target audience. For example, it is possible that Chinese processors define assembly language instructions without resemblance to English.