Important Notice:

Basic Model of Computation

Basic Model of Computation

52 views 1 min read

Basic Model of Computation (कंप्यूटेशन का मूल मॉडल):-

Basic Model of Computation वह मूल प्रक्रिया (Fundamental Process) है जिसके द्वारा कोई Computer Program किसी समस्या (Problem) का समाधान करता है। इसमें Program सबसे पहले Input (इनपुट) प्राप्त करता है, फिर Algorithm (एल्गोरिद्म) या Program Logic (प्रोग्राम लॉजिक) के अनुसार उस पर Processing (प्रसंस्करण) करता है और अंत में Output (आउटपुट) के रूप में परिणाम (Result) प्रदान करता है।

यह मॉडल यह दर्शाता है कि किसी भी Program का मुख्य उद्देश्य Input Data को उपयोगी Information (सूचना) में बदलना होता है।

Example:-

If a user enters 15 and 25:

  • Input: 15, 25
  • Processing: 15 + 25
  • Output: 40

English

The Basic Model of Computation is the fundamental process by which a Computer Program solves a problem. The program accepts Input, processes it according to an Algorithm or Program Logic, and finally produces the required Output.

The main objective of computation is to transform Input Data into meaningful Information.

Example:-

If a user enters 15 and 25:

  • Input: 15, 25
  • Processing: 15 + 25
  • Output: 40

Related Notes