Introduction
System Analysis & Design (SAD) का सबसे पहला और आधारभूत concept है System
अगर system को सही तरीके से समझ लिया जाए, तो पूरे subject को समझना आसान हो जाता है
एक system को सामान्य भाषा में समझें तो यह एक ऐसा organized arrangement होता है जिसमें कई अलग-अलग components (parts) एक साथ मिलकर किसी निश्चित उद्देश्य (goal) को पूरा करते हैं।
System केवल components का समूह नहीं होता, बल्कि यह components के बीच के relations, interaction और coordination का भी परिणाम होता है।
इसका मतलब यह है कि system के सभी parts एक-दूसरे से जुड़े होते हैं और एक-दूसरे पर निर्भर होते हैं।
System हमेशा किसी specific purpose के लिए बनाया जाता है, जैसे:
- information process करना
- decision making में मदद करना
- business process automate करना
System की Formal Definition
System एक ऐसा set है जिसमें interrelated और interdependent components होते हैं, जो एक साथ मिलकर किसी predefined objective को achieve करते हैं।
System के Basic Elements
हर system कुछ मुख्य elements पर आधारित होता है:
1. Input
System में आने वाला raw data
2. Process
Input को useful information में बदलना
3. Output
Final result
4. Feedback
Output के आधार पर सुधार
5. Control
System को regulate करना
System Working Model (Block Diagram)

Diagram Explanation
- Input → system में data enter होता है
- Process → data पर काम होता है
- Output → result मिलता है
- Feedback → result के आधार पर सुधार किया जाता है
यह diagram system के working को clear तरीके से दिखाता है
Detailed Example 1: Student Result System
Input
Student का नाम, marks
Process
Total, percentage और grade calculate करना
Output
Result और grade
Feedback
गलत marks होने पर correction
Real-Life Block Diagram Example (Student System)

Detailed Example 2: ATM System
Input
ATM card, PIN, transaction
Process
Verification और processing
Output
Cash, receipt, balance
Feedback
Wrong PIN या insufficient balance message
System की Characteristics
- Organization → system structured होता है
- Interaction → components interact करते हैं
- Interdependence → parts dependent होते हैं
- Integration → सभी parts मिलकर काम करते हैं
- Goal-Oriented → हर system का objective होता है
Simple Program Example (System Concept)
#include <stdio.h>
int main() {
int a, b, result;
printf("Enter two numbers: ");
scanf("%d %d", &a, &b);
result = a + b;
printf("Result = %d\n", result);
return 0;
}
Program Explanation
Input → user से numbers लिए गए
Process → addition किया गया
Output → result display हुआ
यह program एक simple system model को represent करता है।
Conclusion
Fundamentals of System SAD का foundation है।
यह हमें यह समझने में मदद करता है कि किसी भी problem को structured तरीके से कैसे solve किया जाए।
System हमेशा components, interaction और goal पर आधारित होता है।
अगर यह concept clear हो जाए, तो आगे के सभी topics समझना आसान हो जाता है।