code hindi Information technologyCareer blogs Courses info Digital Marketing About

Machine code kya hai? explained in Hindi

Machine code, jo binary code bhi kehlata hai, wo low-level code hota hai jo directly computer's CPU (Central Processing Unit) dwara execute kiya ja sakta hai. Yeh code binary digits (0 aur 1) ke form me hota hai aur hardware-specific instructions ko represent karta hai.

Machine Code ke key characteristics:
  • 1. Binary Format : Machine code purely binary format me hota hai, yani 0s aur 1s ka sequence. Yeh format directly computer hardware dwara samjha aur execute kiya ja sakta hai.
  • 2. Low-Level Instructions : Machine code low-level instructions ka set hota hai jo specific operations ko perform karta hai jaise arithmetic operations, memory access, aur control flow. Har instruction ek specific operation represent karta hai.
  • 3. Hardware-Specific : Machine code specific hardware architecture ke liye hota hai. Yeh CPU ke instruction set architecture (ISA) ke according design hota hai, jisme x86, ARM, aur MIPS jaise architectures shamil hain.
  • 4. Direct Execution : Machine code directly CPU dwara execute hota hai bina kisi further translation ke. Yeh fastest form of code execution hai kyunki yeh hardware ke liye native instructions provide karta hai.
Machine Code ka Example:

Machine code ko samajhna thoda mushkil ho sakta hai kyunki yeh binary ya hexadecimal format me hota hai. Ek simple example dekhte hain:

# Binary Format:

10110000 01100001

# Hexadecimal Format:

B0 61

Assembly Language aur Machine Code:

Machine code ko directly likhna aur samajhna mushkil hota hai, isliye assembly language ka use kiya jata hai jo human-readable format me low-level instructions ko represent karti hai. Assembly code ko assembler dwara machine code me translate kiya jata hai.

# Assembly Code Example (x86 Assembly):

MOV AL, 61h

Is assembly instruction ka matlab hai "register AL me value 61h load karo". Isse assembler machine code me convert karta hai:

10110000 01100001

Compilation aur Machine Code:

High-level languages (jaise C, Java, Python) me likha gaya code directly machine code me nahi hota. Yeh code pehle intermediate forms me translate hota hai:

  • 1. Source Code : High-level programming language me likha gaya code. // C code example int main() { return 0; }
  • 2. Compilation : Compiler source code ko machine code me convert karta hai. Compilation process ke stages: - Lexical Analysis - Syntax Analysis - Semantic Analysis - Optimization - Code Generation
  • 3. Object Code : Intermediate machine code jo different modules ya files ka output hota hai.
  • 4. Linking : Object code ko link karke final executable binary banayi jati hai.
Machine Code ke Advantages:
  • 1. Fast Execution : Machine code directly CPU dwara execute hota hai, jisse code execution maximum speed pe hoti hai.
  • 2. Minimal Abstraction : Machine code hardware ke bohot close hota hai, jisse fine-grained control milta hai hardware resources aur operations pe.
Machine Code ke Disadvantages:
  • 1. Complexity : Machine code ko likhna aur samajhna bohot complex aur error-prone hota hai. Isliye high-level languages use ki jati hain.
  • 2. Portability : Machine code hardware-specific hota hai, jisse ek architecture se dusre architecture pe port karna difficult hota hai.
  • 3. Debugging Difficulty : Machine code me errors ko detect aur fix karna mushkil hota hai kyunki yeh low-level aur less readable hota hai.
Conclusion:

Machine code computer hardware ka fundamental language hota hai jo CPU instructions ko directly define aur execute karta hai. Yeh code binary format me hota hai aur specific hardware architecture ke according hota hai. High-level programming languages aur assembly language ke through machine code ke complexity ko manage kiya jata hai, jisse software development process simplify hoti hai.

Server kya hota hai

Integrated Development Environment (IDE) kya hai