Class 11 CS (Python) Notes - Unit 1: Computer System Overview

Class 11 Computer Science (083) - Unit 1: Computer System Overview

By Devanshu Sir | Python Focused Notes

Welcome, Future Coders! Class 11 CS की शुरुआत होती है कंप्यूटर को समझने से। Python सीखने से पहले हमें यह जानना होगा कि जिस मशीन पर हम कोड करेंगे, वह काम कैसे करती है।

1. IPO Cycle (Input-Process-Output)

कंप्यूटर एक ही सिद्धांत (Principle) पर काम करता है जिसे IPO Cycle कहते हैं।

  • Input: डेटा अंदर लेना (Keyboard, Mouse).
  • Process: उस डेटा पर काम करना (CPU).
  • Output: रिजल्ट दिखाना (Monitor, Printer).

2. Components of Computer System

कंप्यूटर सिस्टम के मुख्य भाग:

CPU (Central Processing Unit): इसे कंप्यूटर का "दिमाग" (Brain) कहते हैं। इसके तीन भाग हैं:
1. ALU (Arithmetic Logic Unit) - गणना के लिए।
2. CU (Control Unit) - ट्रैफिक पुलिस की तरह सिग्नल कण्ट्रोल करता है।
3. Registers - बहुत तेज मेमोरी।

3. Memory (Primary vs Secondary)

मेमोरी दो तरह की होती है:

  • RAM (Random Access Memory): Volatile (बिजली गयी, डेटा गया)। यह हमारा "Working Table" है।
  • ROM (Read Only Memory): Non-Volatile (स्थायी)। इसमें कंप्यूटर स्टार्ट करने का प्रोग्राम (BIOS) होता है।
  • Secondary Memory: HDD, SSD, Pen drive (स्थायी स्टोरेज)।

4. Introduction to Software & Python

हार्डवेयर बिना सॉफ्टवेयर के बेकार है। हम System Software (OS) और Application Software (Apps) यूज़ करते हैं।

My First Python Program:

Python एक High-Level Language है। चलिए अपना पहला कोड देखते हैं:

# This is my first Python Code
print("Hello, World!")

# Adding two numbers
a = 10
b = 20
print("Sum is:", a + b)

🔥 Exam Important Questions

Q1. What is the full form of ALU and CU? (1 Mark)
Q2. Differentiate between RAM and ROM. (2 Marks)
Q3. Why CPU is called the brain of computer? (2 Marks)

🐍 Watch Full Python Lecture on YouTube

© 2026 DevaHelper - Coding with Devanshu. All Rights Reserved.

Comments