answersLogoWhite

0


Best Answer

Most people only consider the assembly languages (and plain bytecode) to be "low level" languages. Due to this, the "structure" of a low level language is simply a sequence of instructions for the CPU.

User Avatar

Wiki User

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

Wiki User

10y ago

the basic unit of a language is a sentence. Sentences have different structures according to their kind. A simple English sentence has the structure=

Subject+verb+object = Bano bought a book.

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

Assembly languages are low-level languages such that there is a one-to-one correspondence with the architecture's machine code instructions. Since there are no structures or procedures in assembly, code is written in a "spaghetti" style, such that whenever a decision statement is encountered, code will either continue to the next instruction or jump to another section of code entirely. This makes the code extremely difficult to read with verbose user-comments to give the code some sense of structure. The code is essentially divided into two main sections corresponding to the text and data segments of the assembled executable. The text segment contains the actual instruction code while the data segment contains all the named constants and global variables that the text segment can directly refer to (by name). All code is written in terms of the machine, thus there are no high-level abstractions such as function calls (subroutines) or structured loops. In C programming, we can use the C compiler to generate the low-level assembly code from the high-level C source. Examining this code will reveal that even the most trivial of C programs can generate many hundreds of individual assembly instructions. Compiling with the maximum optimisation will render the code virtually unreadable. Reverse engineering low-level code requires a great deal of skill and patience.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Basic structure of low level language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

The complexity and advantages of Basic programming language over a low-level language?

gw basic is a programing language that allows us to operate computer and compute the statements and coomands that we want to.gw basic is an easy language which a simple person can understad.a programer can create his/her own programes using gw basic.


What is mid level language?

A language that allows you to combine high-level programming with low-level programming. C and C++ are generally regarded as being mid-level languages.


Why will you prefer low level language to a high level language?

A high level language naturally assumes the intentions of the programmer and thus blocks off many otherwise possible methods. For those that prefer to have a high level of control, a low level language is the obvious choice. The level of the language is inversely proportionate to the degree of control the programmer has. ie. low level language = high level of control, and vice versa.


What is High Level Languages and Low Level Languages?

High-level and Low-level term are used to differ any computer programming language whether it is easily understandable to human or not.High Level Language means the language is easily understandable, andLow Level Language means the language is more to a machine language than human understandable language.High-level and Low-level term are used to differ any computer programming language whether it is easily understandable to human or not.High Level Language means the language is easily understandable, andLow Level Language means the language is more to a machine language than a human understandable language.


What is a low level of language?

c

Related questions

How to convert low level language into high level language?

lang are convert into low level language by


The complexity and advantages of Basic programming language over a low-level language?

gw basic is a programing language that allows us to operate computer and compute the statements and coomands that we want to.gw basic is an easy language which a simple person can understad.a programer can create his/her own programes using gw basic.


What is mid level language?

A language that allows you to combine high-level programming with low-level programming. C and C++ are generally regarded as being mid-level languages.


What is meant by low level language?

A low level language is one where there are only a few (or even only one) instruction(s) per line of code. Assembler is an example of a low level language.


Why will you prefer low level language to a high level language?

A high level language naturally assumes the intentions of the programmer and thus blocks off many otherwise possible methods. For those that prefer to have a high level of control, a low level language is the obvious choice. The level of the language is inversely proportionate to the degree of control the programmer has. ie. low level language = high level of control, and vice versa.


What is High Level Languages and Low Level Languages?

High-level and Low-level term are used to differ any computer programming language whether it is easily understandable to human or not.High Level Language means the language is easily understandable, andLow Level Language means the language is more to a machine language than human understandable language.High-level and Low-level term are used to differ any computer programming language whether it is easily understandable to human or not.High Level Language means the language is easily understandable, andLow Level Language means the language is more to a machine language than a human understandable language.


How can you translate c language to visual basic?

You can't. VB is too complex and too high level. C is one of the most basic low level languages around. Its very hard to translate into higher level languages but easy to translate into assembler


Is Database a low level language?

No.


What is a low level of language?

c


Difference between high level language and low level language in tabular form?

high level language are easier to learn


What are the simalarities of high and low level programming?

high level language; is a computer language that is near to human language. high level programming is a process of programming high level language.Example,c++,java,cobol are one of them. The reverse is true for the low level language.


What converts assembly language into low-level language?

An assembler.