Question:medium

Which of the following is used to Manage Data Base?

Show Hint

Remember the acronyms:
- OS: Operating System (manages computer resources)
- DBMS: Database Management System (manages data)
- RAM: Random Access Memory (primary storage)
- CPU: Central Processing Unit (processor)
Updated On: Jul 14, 2026
  • Operating System
  • Complier
  • Cache Memory
  • DBMS
Show Solution

The Correct Option is D

Solution and Explanation

Another way to confirm this is to ask: if this component were removed from a computer system, would the ability to manage a database be lost? Let's check each option against that test.

  1. Operating System: Removing it would stop the whole computer from running, but its job was never specifically about organizing or querying data inside a database; that's handled by separate software layered on top of it.
  2. Compiler: Removing it would stop programs from being translated into executable code, but this has no direct connection to storing or retrieving structured data in a database.
  3. Cache Memory: Removing it would slow down data access speeds, but the actual job of organizing, storing, and querying data would be unaffected, since cache is just a fast temporary storage layer.
  4. DBMS: Removing it would directly eliminate the ability to create, store, retrieve, update, and secure structured data, since that management function is precisely what a DBMS exists to provide.

Only removing the DBMS directly removes the capability to manage a database; the other three components serve entirely different roles in a computer system.

Therefore, the correct answer is DBMS.

Was this answer helpful?
0