answersLogoWhite

0

0000

0001

0010

0011

0100

0101

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

What assembly language directive indicates the start of the code segment?

The "ORG" (for "origin") statement indicates the start of the code segment. Many assembly language source files start with "ORG 0", indicating that instructions begin at address 0. Many other assembly language source files, such as COM files, start with "ORG 0x100", indicating that instructions begin at address 0x100.


Who Assembly language write?

That depends on who you ask and how far back you go. It could be Intel, it could be whoever designed the ENAIC (used for looking up trajectory tables) but I think it was Charles Babbage, inventor of the 'analytical machine.' More: http://en.wikipedia.org/wiki/Turing_complete


How do you create and run assembly language?

Assemblies are the smallest functional unit of deployment.They are created whenever we compile a Csharp program.They contain file or collection of different modules. There are two type :Shared Assembly and private assembly. Private assembly is created when the functionality of the component is specifically associated with an application. Shared assembly is created to have a single copy of it which is kept in the GAC ,GAC is Global Assembly Cache. There are 4 components of assemble 1.MSIL Code, 2)Metadata 3)Manifest 4)Resource. Manifest contains the assembly information such as assembly version,security,identity,references to other assembly. Msil Code:It is Microsoft Intermediate Language,this can be efficiently converted to native code by the JIT Compiler i.e Just-in-Time Compiler. Resources are the resources allocated to that assembly.Metadata provides information about the type defined in the assembly such as classes ,interfaces.


Explain the differences between Assembly Language and High Level Language?

Assembly language is used to write programs using the instruction set for a particular processor/controller.(example : 8051 or 8086 or MIPS).It is confined to a particular machine, it involves symbolic representation of the binary machine codes and other constants needed to program a given CPU architecture.Assembly Language require an ASSEMBLER to convert the assembly code to machine level code(HEX CODE)High Level Language require a Compiler to convert into ASSEMBLY THEN machine level code.(Now-a-days compilers are smart enough to generate the machine code directly)To write assembly code it is necessary to know the architecture of the processor or controller.To write an High Level Program it is not neccessay to know the architecture completly.Assembly language is not protable.High Level Language is Portable.with regardsMohan Kumar.JMCIS,MANIPAL.Assembly language is used to write programs using the instruction set for a particular processor/controller.(example : 8051 or 8086 or MIPS).High Level Language is used to write programs using some grammer rules or languages created like C,PASCAL,FORTRN,JAVA.Assembly Language require an ASSEMBLER to convert the assembly code to machine level code(HEX CODE)High Level Language require a Compiler to convert into ASSEMBLY THEN machine level code.(Now-a-days compilers are smart enough to generate the machine code directly)To write assembly code it is necessary to know the architecture of the processor or controller.To write an High Level Program it is not neccessay to know the architecture completly.Assembly language is not protable.High Level Language is Portable.with regardsMohan Kumar.,MCIS,MANIPAL.EACH HLL INSTRUCTION SPECIFY SEVERAL INSTRUCTIONS IN isa OF COMPUTER. WHEREAS EACH aSSEMBLY LEVEL INSTRUCTION SPECIFIES A SINGLE INSTRUCTION IN ISA OR MACHINE LEVEL LANGUAGEPRIYA BAJAJWIPRO TECHNOLOGIESBANGALOREAnswer--Assembly language :-A programming language that is once removed from a computer's machine language. Machine languages consist entirely of numbers and are almost impossible for humans to read and write. Assembly languages have the same structure and set of commands as machine languages, but they enable a programmer to use names instead of numbers.Each type of CPU has its own machine language and assembly language, so an assembly language program written for one type of CPU won't run on another. In the early days of programming, all programs were written in assembly language. Now, most programs are written in a high-level language such as FORTRAN or C. Programmers still use assembly language when speed is essential or when they need to perform an operation that isn't possible in a high-level language.High-level language:-A high level language hides the micro abstractions such as set of command required to be performed by the processors such as CPU. Java and C++ are all high level languages.Java, C++ : all easy to write non-binary languagesExample : (i=10, i


What is the difference between assembly language program and high level language program?

There is very little difference, functionally, between assembly language and machine level language. Each assembly language statement corresponds to one machine instruction. The difference is in readability (who wants to read and write in hex code?) and in ease of address computation.

Related Questions

What is the native language of 'c'programming language?

there are the numbers 0 and 1


What two numbers equals five in adding?

Two numbers that equal 5 when adding are:0 + 5 or 5 + 0 1 + 4 or 4 + 1 3 + 2 or 2 + 3


Why does the equation 5 multiplied by 0 equal 0?

5 times 0 is the same as adding up zero fives. Since you aren't adding any numbers, the answer is zero.


How is adding integers similar to adding whole numbers?

Integers include 0, the negative numbers without fractional parts, and the positive numbers without fractional parts. The "without fractional parts" part of the description implies that all of the integers are whole numbers. Therefore, if you are adding integers, you are adding whole numbers.


What assembly language directive indicates the start of the code segment?

The "ORG" (for "origin") statement indicates the start of the code segment. Many assembly language source files start with "ORG 0", indicating that instructions begin at address 0. Many other assembly language source files, such as COM files, start with "ORG 0x100", indicating that instructions begin at address 0x100.


What is the answer to 6-⁴?

+


Do numbers look the same in every language?

Yes, numbers look the same in every language as they are represented by the same symbols (0-9) universally.


How many prime numbers are there between 0?

infintate as numbers do not stop, so you can keep adding digits at the end of the negative number.


What is a machine language?

Actual Machine level language is binary language, which contains only '0' & '1 ' and it's the extreme besic of a computer's instruction. Then comes low level language, like assembly language and so on.


What is machine language called and what numerals represent this language?

A machine language is called as machine code and it is represented as binary numbers 0 and 1


What numbers are multiples of 2?

Mulriples of 2 - 2, 4, 6,8,10,12,24,26,28,30,32,34,36,38,40.... JUST KEEP ADDING TWO


How do you print strings and numbers in single statement by using C language?

With printf.Example:for (i=0; i