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
  1. Microsoft

  2. Sun

  3. IBM

  4. Cisco

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

SQL (Structured Query Language) was developed by Donald D. Chamberlin and Raymond F. Boyce at IBM in the early 1970s. It was originally called SEQUEL. Microsoft developed SQL Server (a database system), Sun was known for Java and MySQL acquisition, and Cisco focuses on networking equipment.

Multiple choice general knowledge
  1. Red List

  2. Red Book

  3. Blue Book

  4. White List

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

A White List in card-based systems contains the database of all authorized card numbers that are permitted to process transactions. This is a security measure to ensure only valid, approved cards can be used. Red List and other color-coded lists refer to different security concepts in payment systems.

Multiple choice general knowledge
  1. The Quantity of field Characters

  2. The type of field Character

  3. The field format

  4. The font style of field characters

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

A field's data type determines both the quantity of characters (like Field Size for Text) and the type of characters allowed (numeric vs text, date format validation, etc.). Field format and font style are display properties, not data type characteristics.

Multiple choice general knowledge science & technology
  1. Independence of table relationships

  2. High speed of SQL

  3. Powerful GUI front-end

  4. Easy to install and use

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

A key feature of relational databases and SQL is the independence of table relationships through foreign keys and joins, allowing data to be distributed across multiple tables while maintaining logical connections. SQL execution speed varies, there is no standard GUI, and installation complexity depends on the specific DBMS.

Multiple choice general knowledge science & technology
  1. Database Management System.

  2. Data Borrowing and Movement Software.

  3. Database Manipulation Software.

  4. Digital Base Mapping System.

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

DBMS stands for Database Management System, which is software that manages databases, allowing users to create, retrieve, update, and delete data in an organized and efficient manner. This is the standard industry term.

Multiple choice general knowledge science & technology
  1. A row or record in a database table.

  2. An attribute attached to a record.

  3. Another name for the key linking different tables in a database.

  4. Another name for a table in an RDBMS.

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

In relational database terminology, a tuple refers to a single row or record in a table. It contains values for each attribute (column) defined in the table schema. This is the formal mathematical term from relational theory.

Multiple choice general knowledge
  1. Java/J2EE

  2. Java,.NET,DataWare Housing

  3. Testing

  4. .NET,PL/SQL

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

TCS works with Scotia Bank across multiple technology areas. The correct combination includes Java (widely used in enterprise applications), .NET (Microsoft ecosystem), and Data Warehousing (for analytics and reporting). Testing is a practice, not a technology area per se.

Multiple choice general knowledge math & puzzles
  1. mysql_open("localhost");

  2. mysql_connect("localhost");

  3. dbopen("localhost");

  4. connect_mysql("localhost");

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

mysql_connect() was the historical PHP function for connecting to MySQL databases (though deprecated in PHP 5.5 and removed in PHP 7.0). Modern PHP applications should use mysqli_connect() or PDO instead. The other options (mysql_open, dbopen, connect_mysql) are not standard PHP functions. The correct syntax would typically include username, password, and database name parameters.

Multiple choice general knowledge science & technology
  1. Create Databases

  2. Create & Modify Databases

  3. Create, Modify & Query Databases

  4. None

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

SQL (Structured Query Language) is a comprehensive database language that supports creating database structures, modifying existing data and schemas, and querying data to retrieve specific information. DDL commands handle creation, DML handles modification, and DQL handles querying.

Multiple choice general knowledge
  1. Report

  2. Field

  3. Record

  4. File

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

In database terminology, a field represents a single attribute or category of data, similar to a column in a spreadsheet. Each field contains the same type of information across all records - for example, a 'Phone Number' field would only contain telephone number data, while a record is a complete set of all fields for one entry.