Important Notice:

Course Content
Introduction to Programming (Chapter 1) M3-R5.1
About Lesson

Assembly language:

Assembly Language यह भी Low-Level प्रोग्रामिंग लैंग्वेज का एक प्रकार है जिसे मशीन कोड या ऑब्जेक्ट कोड भी कहा जाता है Assembly लैंग्वेज का स्ट्रक्चर इस प्रकार होता है की जिसे इंसान आसानी से समझ सकता है। असेंबली भाषा को मशीन भाषा में बदलने के लिए एक असेंबलर का उपयोग किया जाता है। Assembly का सबसे बड़ा फायदा यह होता है की इसे रन करने के लिए कम मेमोरी खर्च होती है और Assembly लैंग्वेज में लिखा हुआ प्रोग्राम भी जल्द Run होता है।

Example:       

To add 5 and 6 you will write 5+6 and you will              get result.

But, to add 5 and 6 using assembly language, you will have to do:

Binary/Machine code of 5                        –           101

Binary/Machine code of 6                        –           110

Mnemonic of addition                              –           ADD

You have to write:           101 ADD 110

 

Assembly language:

  • It is the second generation programming language that has almost similar structure and set of commands as Machine language.
  • Programmer can use words or names in English forms, which are known as mnemonics.
  • Because a Computer only understands machine code languages, an Assembler is used that can convert the Assembly level language to Machine language

Example:       

To add 5 and 6 you will write 5+6 and you will              get result.

But, to add 5 and 6 using assembly language, you will have to do:

Binary/Machine code of 5                        –           101

Binary/Machine code of 6                        –           110

Mnemonic of addition                              –           ADD

You have to write:           101 ADD 110

error: Content is protected !!