Benefit and reason using Assembly Languages
Basically there are 3 levels of Programming Languages: Machine Language Consists of individual instructions that will be executed by the CPU one at a time Using Binary code ,since machines/ computer only know "on" and "off". Assembly Language (Low Level Language) Designed for a specific family of processors (different processor groups/family has different Assembly Language) Consists of symbolic instructions directly related to machine language instructions one-for-one and are assembled into machine language. High level Language For example:C, C++, java and Vbasic Designed to eliminate the technicalities of a particular computer.Statements compiled in a high level language typically generate many low-level instructions. The main point of this post is not about the machine language nor High Level Language , but the assembly Language. Machine Language is make up from 0 and 1 ,thus assembly language is easier for human to read since is usi...