IT Study
Section-one-quizTheory VaultFree NotesSubjectiveOne LineSyllabusPast PapersMCQ PracticeInstitutes
0 day streakSign in

Exam prep that stays consistent

IT Study

Daily practice space for computer operator and IT-focused exams. Build streaks, revise key topics, and keep your momentum.

Navigation

  • Section-one-quiz
  • Theory Vault
  • Free Notes
  • Subjective
  • One Line
  • Syllabus
  • Past Papers
  • MCQ Practice
  • Institutes

Resources

  • Practice Mistakes

Tools

  • Vacancy Updates

Copyright 2026 IT Study. All rights reserved.

Weekly activity map shows your real consistency.

Home/Past Papers/Nepal Police Computer Operator Exam – 2082/Question 7
View complete paper
Nepal Police•2082 BS•Question 7 of 8

Explain the concept of Database Management System. Describe the types of DBMS and write SQL commands for data manipulation.

10 marks

Question source

Exam year
2082 BS / 2025 AD
Level
Level 5
Paper
Technical – Subjective
Section
Section B: Long Answer Questions (2 × 10 = 20 marks)

Model answer

A Database Management System (DBMS) is software that provides an interface for users and applications to interact with databases. It manages data storage, retrieval, updating, and administration.

Types of DBMS:

  1. Hierarchical DBMS — Data organized in tree-like structure with parent-child relationships. Example: IBM IMS.
  2. Network DBMS — Extension of hierarchical, allows many-to-many relationships. Example: Integrated Data Store (IDS).
  3. Relational DBMS (RDBMS) — Data stored in tables (relations) with rows and columns. Most widely used. Example: MySQL, PostgreSQL, Oracle.
  4. Object-Oriented DBMS — Data stored as objects, similar to OOP. Example: db4o, ObjectDB.

SQL Commands for Data Manipulation (DML):

  • SELECT — Retrieve data:
SELECT Name, Salary FROM Employee WHERE Department = 'IT';
  • INSERT — Add new records:
INSERT INTO Employee (EmpID, Name, Department) VALUES (1, 'Sita Thapa', 'HR');
  • UPDATE — Modify existing records:
UPDATE Employee SET Salary = 55000 WHERE EmpID = 1;
  • DELETE — Remove records:
DELETE FROM Employee WHERE EmpID = 5;
Previous questionQuestion 6: What is an algorithm? Write an algorithm to find the largest of three numbers.Next question Question 8: Explain the Information Technology Policy of Nepal, 2072. Discuss its objectives and provisions regarding IT development in Nepal.

Question 7 of 8 from Nepal Police Computer Operator Exam – 2082

Open all questions