Computer Knowledge

Database Management Systems

5,543 Questions

Database Management Systems (DBMS) form the core framework for data storage, retrieval, and security in modern software applications. Concepts such as the E-R model, backup planning, SQL integration, and big data architecture are essential for computer knowledge sections. This hub offers a comprehensive set of practice questions to master DBMS fundamentals and advanced database operations.

E-R Model ConceptsBackup and RecoverySQL Server UpgradesJDBC and ODBCBig Data CharacteristicsData VirtualizationOracle Database

Database Management Systems Questions

Multiple choice general knowledge science & technology
  1. Cluster

  2. Client utility

  3. Engine

  4. Backup tool

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

InnoDB is a storage engine for MySQL, not a cluster, client utility, or backup tool. It has been the default storage engine since MySQL 5.5 and provides ACID-compliant transactions, foreign key support, and row-level locking. This is a fundamental MySQL architecture question.

Multiple choice general knowledge science & technology
  1. MySQL

  2. Oracle

  3. Both of these

  4. None of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Oracle's MVCC is a core feature built into its architecture, providing non-locking reads and write consistency. MySQL's InnoDB storage engine also implements MVCC, but the question is likely testing knowledge that Oracle is synonymous with MVCC while MySQL requires specific storage engines.

Multiple choice general knowledge science & technology
  1. Navicat

  2. phpMyAdmin

  3. Catcross

  4. bulkloader

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Navicat is a commercial graphical database management tool that supports multiple databases including MySQL, Oracle, and PostgreSQL. phpMyAdmin is web-based and MySQL-specific. The other options are not database management tools.

Multiple choice general knowledge science & technology
  1. Web Server

  2. Database

  3. Portal

  4. Content Management System.

  5. Both c and d

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Joomla is fundamentally a content management system that enables portal creation, making option E accurate. It's neither a web server nor a database, though it runs on LAMP stack.

Multiple choice general knowledge science & technology
  1. Sequential and random

  2. Sequential and indexed

  3. Direct and immediate

  4. Online and real time

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Sequential access processes data in order (like tapes), while random access allows direct retrieval (like disks). These are the two fundamental methods for accessing records in storage systems. Indexed is a type of sequential access, and 'online/real time' describes availability, not access method.

Multiple choice general knowledge
  1. Release Name

  2. Stream Name

  3. Demand Name

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

When using the Bulk Upload tab for Test Cases, all three referenced entities (Release Name, Stream Name, and Demand Name) must already exist in the Database before the upload can proceed. Options A, B, and C are each individually necessary but incomplete - the requirement is that ALL of them must be present.

Multiple choice general knowledge science & technology
  1. Sequential and random

  2. Sequential and indexed

  3. Direct and immediate

  4. Online and real time

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Sequential access processes records in order (like magnetic tape), while random/direct access can retrieve any record directly by address (like disk). Indexed access uses an index to achieve random access. 'Online' and 'real time' describe system characteristics, not fundamental access methods.