LibreOffice Base is the database management component of LibreOffice — and it's a significant part of the IT 402 syllabus. Database questions appear in both Section A (MCQ) and Section B (subjective) of the IT 402 board exam. Students who understand the concepts clearly — rather than just memorising terms — score consistently higher in this section.

What Is a Database? — Core Concepts

A database is an organised collection of related data stored electronically so it can be easily accessed, managed and updated.

A Database Management System (DBMS) is software that manages databases. LibreOffice Base is an example of a DBMS. Other examples include MySQL, Microsoft Access, and Oracle.

📚 Key Definition for Exam: DBMS = software that stores, retrieves, organises and manages data efficiently. LibreOffice Base is the DBMS used in IT 402.

Essential Database Terminology — All From CBSE Syllabus

TermDefinitionExample
TableThe basic unit of a database — stores data in rows and columnsA "Students" table with columns for name, roll number, marks
FieldA column in a table — represents one type of dataIn the Students table: "Name" is a field
RecordA row in a table — represents one complete entryOne student's complete data (name + roll no + marks) = one record
Primary KeyA field that uniquely identifies each record in a tableRoll Number is a primary key — no two students share the same roll number
Foreign KeyA field that links to the primary key of another tableStudent's Department ID in a student table links to Department table
QueryA request to retrieve specific data from a database based on conditionsFind all students who scored above 75 marks
FormA user-friendly interface for entering data into a tableA form with labelled text boxes for entering student details
ReportA formatted printout of data from the databaseA printable list of all students with their grades

Primary Key — The Most Examined Concept

The primary key is tested in almost every IT 402 board paper. Three key properties to remember:

Common Exam Question: "Why is Roll Number suitable as a primary key for a Student table?" Answer: Because every student has a unique roll number, it cannot be NULL, and it does not change — all three properties of a primary key are satisfied.

Another Common Question: "Can Name be used as a primary key?" Answer: No — two students can have the same name, so Name is not unique and cannot serve as a primary key.

Types of Queries in LibreOffice Base

A query is used to extract specific data from a database based on conditions you specify. In LibreOffice Base, queries can be created using the Query Design view (visual) or SQL (text-based).

Examples of database queries in IT 402 context:

In board exams, you may be asked to: (a) describe what a query does, (b) write conditions for a specific query, or (c) identify what data a given query would return. Focus on understanding what queries DO rather than memorising SQL syntax — IT 402 does not deeply test SQL code.

Creating a Table in LibreOffice Base — Step-by-Step

  1. Open LibreOffice Base → Create a new database or open existing one
  2. Click on Tables in the Database panel → Click "Create Table in Design View"
  3. For each column (field): enter the Field Name, select the Field Type (Text, Integer, Date, etc.) and set properties
  4. Right-click on the Roll Number row → Set as Primary Key (look for the key icon)
  5. Save the table with a name (e.g., "Students")

Field Types in LibreOffice Base

Field TypeUsed ForExample
Text (VARCHAR)Names, addresses, text dataStudent Name, City
Integer (INT)Whole numbersAge, Roll Number, Marks
Decimal/NumericNumbers with decimal pointsSalary (₹25,500.50)
DateCalendar datesDate of Birth, Admission Date
Yes/No (BOOLEAN)True/False valuesIs the student a boarder?
Memo/CLOBLong textStudent address, remarks

Advantages of DBMS Over File Systems — Frequently Asked

This comparison appears regularly in IT 402 Section B. Key advantages of DBMS:

📋 Most Likely Board Question: "A school uses a separate file for each class to store student records. Suggest a better approach and give two advantages." Answer: Use a DBMS like LibreOffice Base. Advantages: (1) No data redundancy — student data stored once, accessible by all teachers. (2) Easy querying — find all students above a certain marks threshold instantly. (3) Data consistency — updates to student records reflect everywhere simultaneously.

All database questions from the actual IT 402 2026 board exam are in the IT 402 answer key on SkillYog — review those questions to see exactly how the examiner expects database concepts to be answered.