Saturday, August 22, 2026

Complete CDC Textbooks, Teacher Guides & Curriculum (Class 1–10) PDF Download

Academic Portal | Textbooks & Teacher Guides (Class 1–10)
CDC Academic Resource Hub Textbooks • Teacher Guides • Curriculum
Google Drive Root

Class 1 to 10 Resource Center

Click any class to display its distinct Student Textbooks and Teacher Guides side-by-side.

Academic Resource Repository • Powered by Google Drive

Complete CDC Textbooks, Teacher Guides & Curriculum (Class 1–10) PDF Download

Friday, August 7, 2026

ЁЯУШ DATABASE MANAGEMENT SYSTEM (DBMS) – COMPLETE NOTES ЁЯТ╗ SEE Computer Science | Class 10 ЁЯУЪ CDC New Curriculum – 2083

 

ЁЯУШ DATABASE MANAGEMENT SYSTEM (DBMS) – COMPLETE NOTES



ЁЯТ╗ SEE Computer Science | Class 10
ЁЯУЪ CDC New Curriculum – 2083
Complete study notes covering the major concepts of Database Management System (DBMS) in a simple, organized, and exam-focused format.
ЁЯУМ Topics Covered:
• Database – Definition, Importance & Applications
• Manual and Computerized Database
• Data and Information
• DBMS – Features, Advantages & Disadvantages
• RDBMS
• Database Data Types
• Tables, Rows and Columns
• Field (Attribute) and Record (Tuple)
• Entity
• Primary Key, Foreign Key & Composite Key
• Database Relationships – 1:1, 1:M & M:N
• MySQL – Features, Advantages & Applications
• Relational Tables
• Query and Report
• MySQL Constraints
• DDL – CREATE, ALTER, DROP, TRUNCATE & RENAME
• DML – SELECT, INSERT, UPDATE & DELETE
• WHERE Clause & LIKE Operator
• SQL Queries and Practical Examples
• MySQL Installation and Basic Practical Tasks
• Important MCQs and Question-Answers
ЁЯОп Useful for:
SEE preparation, class notes, revision, theory examinations, and practical preparation.
Prepared by: Deepak Shrestha

Saturday, July 18, 2026

ЁЯРН Python File Handling Cheat Sheet

 ЁЯФе 99% of SEE students lose marks in Python File Handling because they memorize programs instead of understanding the concepts.

Here's the ultimate one-minute revision you should save before your exam. ЁЯУМ

ЁЯРН Python File Handling Cheat Sheet

ЁЯУВ File Modes

r → Read
w → Write (Overwrite)
a → Append (Add data)
x → Create New File

ЁЯза Memory Trick:
R = Read | W = Wipe | A = Add | X = eXclusive Create


ЁЯУЦ Reading Files

read()       → Entire file
readline()   → One line
readlines()  → All lines (List)

✍️ Writing Files

write()       → One string
writelines()  → Multiple strings

⭐ Most Important Programs

✅ Create a text file

✅ Write data

✅ Append data

✅ Read the entire file

✅ Read the first line

✅ Read all lines

✅ Count characters

✅ Count words

✅ Count lines

✅ Search a word

✅ Copy one file into another


ЁЯЪА Remember These

Characters

len(data)

Words

len(data.split())

Lines

len(file.readlines())

Search

"Python" in data

ЁЯУК SEE Frequently Asked Differences

ЁЯФ╣ read() vs readline() vs readlines()

ЁЯФ╣ write() vs writelines()

ЁЯФ╣ w vs a

ЁЯФ╣ CSV vs Pandas


ЁЯЪи Common Mistakes

❌ Using w instead of a

❌ Forgetting close()

❌ Using len(data) to count words

❌ Forgetting split()

❌ Using read() to count lines


ЁЯОп Final Exam Formula

ЁЯУВ Open File

⬇️

ЁЯУЦ Read / Write

⬇️

ЁЯзо Process Data

⬇️

❌ Close File


ЁЯТЩ If this helped, save this post now. You'll thank yourself the night before the SEE exam.

ЁЯУМ Follow for more SEE Computer Science notes, Python programs, MCQs, handwritten revision sheets, and exam tips.

#SEE #SEE2083 #ComputerScience #Python #PythonProgramming #FileHandling #CSV #Pandas #Coding #LearnPython #Education #Students #ExamPreparation #Programming





































ЁЯЪА Python CSV Module Mastered! ЁЯУКЁЯРН

 ЁЯЪА Python CSV Module Mastered! ЁЯУКЁЯРН

The CSV Module is one of the most important topics in SEE Computer Science (Python File Handling). If you can confidently write these programs, you're already ahead of many students. ЁЯТк

✅ Create a CSV file
✅ Write records using writerow()
✅ Read records using csv.reader()
✅ Append new records without deleting old ones
✅ Write multiple records using writerows()
✅ Display specific columns using indexes
✅ Understand file modes (r, w, a, x)
✅ Avoid common exam mistakes like forgetting newline=""

ЁЯУМ Quick Memory Tricks

ЁЯУЭ writer() ➜ Writes data
ЁЯУЦ reader() ➜ Reads data

ЁЯЧС️ w ➜ Wipe & Write
a ➜ Add at the end

ЁЯУД writerow() ➜ One Row
ЁЯУЪ writerows() ➜ Many Rows

ЁЯОп SEE Exam Tip:
Practice writing every program without looking at your notes. In the exam, syntax matters just as much as the logic.

The next stop is ЁЯР╝ Pandas, where filtering and analyzing CSV data becomes much simpler.

ЁЯУЪ Keep practicing. Every program you write today is one less mark you lose tomorrow.

#Python #CSV #PythonProgramming #FileHandling #SEEComputerScience #SEE2083 #SEEExam #ComputerScience #Coding #LearnPython #Students #Programming #Education









ЁЯЪА ЁЯР╝ Pandas Complete for SEE Computer Science 2083 | One-Shot Revision!

 ЁЯЪА ЁЯР╝ Pandas Complete for SEE Computer Science 2083 | One-Shot Revision!

Still confused about Pandas? Don't worry! This complete revision covers everything you need for the SEE exam in one place. ЁЯУЪЁЯТ╗

✅ What is Pandas?
✅ DataFrame Explained
✅ Read CSV Files
✅ Display Records
✅ Display Selected Columns
✅ Filter Records
✅ Salary > 75,000 Program
✅ Gender = 'M' & Computer > 85 Program
✅ Save Data to Another CSV (to_csv())
index=False Explained
✅ Common Mistakes
✅ SEE Important Programs
✅ Last-Minute Revision Notes

ЁЯОп Perfect for:
✔ SEE Class 10 Students
✔ Board Exam Preparation
✔ Last-Minute Revision
✔ Beginners Learning Python

ЁЯТб Save this post so you can revise before your exam.
ЁЯУМ Share it with your classmates. Someone in your group chat is definitely still confusing = with ==. Computers are unforgiving like that.

ЁЯУЦ Happy Learning!

#SEE2083 #SEEComputerScience #Class10 #ComputerScience #Python #Pandas #CSV #FileHandling #PythonProgramming #ExamPreparation #StudyNepal #NepalEducation #SEERevision #LearnPython #BoardExam