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 sql-server
  1. SQL Server Agent

  2. MS DTC

  3. MSSQL Server

  4. All of the above

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

A Typical installation of SQL Server on NT includes the core database engine (MSSQLServer), the SQL Server Agent for automation, and the Microsoft Distributed Transaction Coordinator (MS DTC) for managing transactions across multiple servers.

Multiple choice sql-server
  1. The copy_db command at a command prompt

  2. Data Transformation Services

  3. The oslp utility

  4. Data Transfer System

  5. The BULK INSERT statement

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

Data Transformation Services (DTS) is the legacy SQL Server 7.0/2000 tool designed specifically for importing, exporting, and transforming data between different formats, such as moving an Access table into a SQL Server database.

Multiple choice sql-server
  1. Run the rebuild.exe program

  2. Drop the MASTER database

  3. Run the reblddb.exe program

  4. Run the sqlservr.eve program with the -m option

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

To restore the master database, SQL Server must be started in single-user mode using the sqlservr.exe command with the -m option. This prevents other connections from interfering with the restore operation. The master database cannot be restored while SQL Server is running normally.

Multiple choice .net vb
  1. Connection

  2. Command

  3. DataReader

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

The DataAdapter uses a Command object to execute SQL queries or stored procedures and retrieve data from the database. The Connection object (A) establishes the database connection, but the Command executes the actual query. DataReader (C) is what gets filled, not what the adapter uses.

Multiple choice web-design
  1. It uses OLE as the database technology

  2. There is no official standard

  3. It is a substitute to ActiveX control

  4. It is developed by W3C

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

Server Side Includes (SSI) is a simple interpreted server-side scripting language. Unlike many web technologies, it has no official W3C standard; different web servers (like Apache or IIS) implement their own variations and sets of directives.

Multiple choice server windows-2003
  1. all data is lost

  2. only the connection closes

  3. all applications running on the server remain active

  4. the session becomes available on the server.

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

When you end a disconnected session on a Remote Desktop server, the session terminates completely and all resources are freed, making that session slot available for new connections. Applications running in that session are closed. The session does not remain active (C), data is preserved in user profiles not lost (A), and more than just the connection closes (B).

Multiple choice xml
  1. True

  2. False

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

XSLT is a transformation language that can convert XML documents into other formats, including SQL statements. This allows database structures (tables, indexes, views) described in XML to be generated as executable SQL code. It's a common use case for XML-to-database migration and schema generation.

Multiple choice six-sigma green-belt
  1. Continuous Data

  2. Binary Categories

  3. Discrete Count

  4. Ordered Categories

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

Ordered Categories (ordinal data) can be logically ranked or rated on a scale, such as customer satisfaction (very dissatisfied to very satisfied), performance ratings, or agreement levels. Unlike continuous data with precise measurements, or binary categories with only two values, ordered categories have a clear sequence but the intervals between categories may not be equal.

Multiple choice six-sigma green-belt
  1. Stable measurement system

  2. Consistent measurement procedures

  3. Same inspectors for data collection

  4. Reasonable data

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

Data consistency comes from stable measurement systems and consistent procedures, not from using the same inspectors repeatedly. Different trained inspectors following the same documented procedures can produce equally consistent data. Relying on the same inspectors is not necessary and could even introduce bias if that person has consistent measurement habits. Therefore, 'Same inspectors for data collection' is the correct exception.

Multiple choice six-sigma green-belt
  1. Attribute data

  2. Continuous data

  3. Segmented Data

  4. Stratified Data

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

Attribute data represents categorical or binary outcomes where each observation falls into distinct categories. YES/NO and pass/fail are classic examples of attribute (also called discrete or categorical) data because they have only two possible states. This differs from continuous data which can take any value within a range. Therefore, 'Attribute data' is the correct classification.

Multiple choice informatica
  1. ETL

  2. Reporting

  3. Modeling

  4. None

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

Informatica is primarily an ETL (Extract, Transform, Load) tool used for data integration and warehousing. It extracts data from various sources, transforms it according to business rules, and loads it into target systems like data warehouses. Reporting and modeling are separate activities, not the core purpose of Informatica.

Multiple choice etl
  1. Extraction,transformation and loading

  2. Extract transactions and load

  3. Enable transactions and load

  4. All the above

Reveal answer Fill a bubble to check yourself
B Correct answer