Instruction format in hindi :- एक instruction operation code (OPCODE) और operand से बना है। instructions का पहला भाग performance किए जाने वाले कार्य को specified करता है जिसे OPCODE कहा जाता है और instructions का दूसरा भाग operated होने वाला डेटा है, और इसे operand कहा जाता है। अब, instructions का operation विभिन्न रूपों में हो सकता है जैसे कि 8-बिट या 16-बिट डेटा, 8-बिट या 16-बिट पता, रजिस्टर या मेमोरी पता आदि। इसलिए, instruction format अलग-अलग instructions में भिन्न हो सकता है। (एक instruction format एक instruction के बिट्स का लेआउट है, इसके component fields के reference में)। Types of Instruction format:- 1. Zero-Address Instructions 2. One-Address Instructions 3. Two-Address Instructions 4. Three-Address Instructions 1. Zero-Address Instructions:- PUSH A i.e., insert the content of A into the stack 2. One-Address Instructions:- example, ADD B i.e. Accumulator <- Accumulator + B 3. Two-Address Instructions:- example, ADD A, B i.e. A <- A+B 4. Three-Address Instruction