Posts

Showing posts from 2026

Types of Nouns: Common, Proper, Collective, and Abstract

Image
Types of Nouns: Common, Proper, Collective, and Abstract   Nouns are one of the most important parts of English grammar. They help us name people, places, animals, things, and ideas. Without nouns, communication would be nearly impossible because we would have no way to identify what we are talking about. Understanding the different types of nouns makes your writing clearer, more precise, and grammatically correct.   In English grammar, nouns are commonly divided into four major types: common nouns, proper nouns, collective nouns, and abstract nouns. Each type has its own function and usage rules. This article explains each category in detail with plenty of examples to help you master them easily.   What Is a Noun?   A noun is a word that names a person, place, thing, or idea.   Examples:   Person: teacher, doctor, Ali   Place: school, city, Colombo   Thing: book, car, phone   Idea: happiness, freedom, love   Now let’s explore the main t...

Parts of Speech in English (Complete Guide with Examples)

Image
Introduction Understanding the parts of speech is the foundation of learning English grammar. Every sentence in English is made using these parts. If you master them, your speaking and writing will improve greatly. This beginner-friendly guide explains all parts of speech in simple English with examples.   What are Parts of Speech? Parts of speech are the different categories of words based on their function in a sentence. In English, there are 8 main parts of speech : Noun Pronoun Verb Adjective Adverb Preposition Conjunction Interjection   🔹 1. Noun A noun is the name of a person, place, thing, or idea. Examples Ali (person) Colombo (place) Book (thing) Happiness (idea) Sentence: Ali reads a book.   🔹 2. Pronoun A pronoun is a word used instead of a noun to avoid repetition. Examples he she it they we Sentence: Sara is my friend. She is very kind.   🔹 3. Verb A verb shows...

File System vs DBMS — Differences, Advantages & Examples

Image
  Introduction In the early days of computing, data was stored using file systems. As organizations grew and data became more complex, Database Management Systems (DBMS) were introduced to manage data efficiently. Understanding the difference between a File System and a DBMS is very important for students and beginners in IT.   What is a File System? A file system is a method used by operating systems to store, organize, and manage files on storage devices such as hard disks and USB drives. Data is stored in separate files, and each file is managed independently. Example Student records saved in separate text files Employee details stored in Excel sheets Documents stored in folders Characteristics of File System Data stored in individual files No strong relationship between files Limited security High data redundancy   What is DBMS? A Database Management System (DBMS) is software that allows users to create, store, re...

DBMS Normalization (1NF, 2NF, 3NF) — Easy Guide with Examples

Image
Introduction Normalization in DBMS is a process used to organize data in a database to reduce redundancy and improve data integrity. It divides large tables into smaller, related tables and removes data duplication. Normalization is performed in steps called Normal Forms : First Normal Form (1NF) Second Normal Form (2NF) Third Normal Form (3NF) Let’s understand each in a simple way.   What is Normalization? Normalization is the process of structuring a database to: Remove data redundancy Avoid update anomalies Improve data consistency Maintain data integrity It is mainly used in Relational Database Management Systems (RDBMS) .   🔹 First Normal Form (1NF) Rule of 1NF A table is in First Normal Form (1NF) if: Each field contains atomic (single) values No repeating groups or multivalued attributes Each record is unique   Example (Not in 1NF) Students table StudentID Name ...

Types of Keys in DBMS (Complete Guide with Examples)

Image
Introduction Keys are very important in a Database Management System (DBMS). They help uniquely identify records, create relationships between tables, and maintain data integrity. Without keys, managing data accurately would be very difficult. In this guide, you will learn the main types of keys in DBMS with simple examples.   What is a Key in DBMS? A key is one or more attributes (columns) used to identify records in a table and establish relationships between tables. Keys ensure that data in the database remains unique, consistent, and properly connected.   Main Types of Keys in DBMS The most important keys are: Primary Key Foreign Key Candidate Key Super Key Alternate Key Composite Key Unique Key (optional but useful to know) Let’s understand each one.   01. Primary Key A Primary Key uniquely identifies each record in a table. Features Must be unique Cannot be NULL Only one primary key per table Example ...