About Lesson
Machine language:
Machin language जिसे मशीन कोड या ऑब्जेक्ट कोड भी कहा जाता है यह low-level प्रोग्रामिंग लैंग्वेज का एक प्रकार है इस लैंग्वेज के प्रोग्राम्स को बाइनरी (0 और 1) में लिखे जाते है इसलिए यह लैंग्वेज पढ़ने में आसान होती है और इस लैंग्वेज को किसी भी ट्रांसलेटर की जरुरत नहीं होती है क्योंकि कंप्यूटर Machin language में लिखे हुए प्रोग्राम्स को सीधे समझ सकता है।
Example:
- To add 5 and 6 you will write 5+6 and you will get result.
- But, to add 5 and 6 using machine language, you will have to do:
- Binary/Machine code of 5 – 101
- Binary/Machine code of 6 – 110
- Binary/Machine code of addition – 1101
- You have to write: 101 1101 110
Machine Language Advantages:
-
- इस भाषा में लिखे गये programs को computer आसानी से समझ लेता है।
- इस language को computer जल्दी execute कर लेते है। क्योंकि इसमें compiler और इंटरप्रेटर की जरूरत नही पड़ती।
- यह output जल्दी दे देता है।
Disadvantages
-
- मशीनी language के लिखे गये program किसी इंसान को समझ नहीं आते।
- machine language के लिखे गए program लम्बे होते है।
- program लिखते समय गलतियां ज्यादा होती है।
Machine language:
- Computers can only understand machine language.
- It is first generation low-level programming languages developed for communicating with a Computer.
- It is written in machine code which represents 0 and 1 binary digits.
- The Computer can easily understand machine language and perform the operations.
Example:
- To add 5 and 6 you will write 5+6 and you will get result.
- But, to add 5 and 6 using machine language, you will have to do:
- Binary/Machine code of 5 – 101
- Binary/Machine code of 6 – 110
- Binary/Machine code of addition – 1101
- You have to write: 101 1101 110
Machine Language Advantages:
There is no need of a translator or interpreter to translate the code, as the Computer directly can understand.
- Disadvantages
You have to remember the operation codes and operand code every time you write a program. It is difficult to find errors in a written program.