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 technology databases
  1. Multiple rows

  2. Multiple coulumns

  3. Multiple schemas

  4. Multiple tables

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

In database hierarchy, a catalog represents a database container hosting one or more named schemas. Each schema then groups related tables, views, and columns. Distractors like multiple rows, tables, or columns represent lower-level database components rather than the high-level schema containers grouped under a catalog.

Multiple choice technology web technology
  1. Semantic Layer

  2. Database

  3. Reporting Layer

  4. Schema type

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

In Business Objects, a Universe is a semantic layer that maps complex database structures to business terminology. It provides user-friendly object names while hiding technical schema details from end users.

Multiple choice technology platforms and products
  1. Dimension

  2. Measure

  3. Detail

  4. All of the above

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

Business Objects Universes contain three primary object types: Dimensions (descriptive attributes like names or categories), Measures (numeric aggregations like revenue or count), and Details (additional context objects like descriptions).

Multiple choice technology platforms and products
  1. Database Layer

  2. Semantic Layer

  3. Schema Layer

  4. View Layer

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

A Universe serves as a semantic layer that abstracts the underlying database schema. It translates technical table and column names into business terminology, making data accessible to non-technical users through familiar business concepts.

Multiple choice technology platforms and products
  1. BO Feature

  2. Universe Feature

  3. DB feature

  4. None of the above

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

In SAP BusinessObjects, aggregate projection is a metadata feature defined on measure objects within a Universe. It dictates how the BusinessObjects reporting engine (like Web Intelligence) automatically aggregates measure values locally when dimensions are changed or removed from a report. Distractors like database features refer to physical database settings, not BO configuration.

Multiple choice technology web 2.0
  1. Database

  2. Cursor

  3. Client

  4. FileUpLoad

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

In classic client-side JavaScript, the FileUpload object represents an HTML file input element in the browser. Objects like Database, Cursor, and Client were specific to Netscape's historical server-side JavaScript (SSJS) implementation.

Multiple choice technology databases
  1. 1

  2. 2

  3. 3

  4. 4

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

SQL Server allows only ONE unnamed default instance per server. The default instance is identified by the computer name alone without any additional instance name. However, you can install multiple named instances on the same server (each with a unique instance name), but only one can be the default instance.

Multiple choice technology databases
  1. Kerebos authentication

  2. Windows

  3. Mixed Mode

  4. Network Service account

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

Mixed Mode authentication allows both Windows authentication and SQL Server authentication to be used to connect to the database. Windows mode only permits Windows logins, while Kerberos and Network Service are not database authentication modes but rather authentication protocols or service accounts.

Multiple choice technology databases
  1. SQL Server Agent

  2. Log Reader Agent

  3. SQL Server

  4. Replication Agent

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

In SQL Server 2005, the database engine service (SQL Server) and the SQL Server Agent run as independent Windows services, requiring their own distinct service account configuration. Log Reader and Replication agents run as jobs/sub-processes rather than standalone services.

Multiple choice technology databases
  1. Installing SQL Server 2005 in the same directory as the current installation and replacing the SQL Server files

  2. Installing a new instance of SQL Server 2005 and sharing the older databases between the new instance and the old instance

  3. Installing a new instance of SQL Server 2005 on the same server as the old instance and moving the databases from the old instance to the new instance

  4. Installing a new instance of SQL Server 2005 on a different server from the old instance and moving the databases from the old server to the new server

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

An in-place upgrade means installing a new version of SQL Server in the same directory as the existing installation, replacing the old files while keeping the same instance. This is different from side-by-side migration where a new instance is created. In-place upgrades are simpler but riskier because they modify the existing installation directly without a fallback option.

Multiple choice technology databases
  1. Copy Database Wizard

  2. Detach/attach

  3. Backup/restore

  4. Manual scripting

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

The detach/attach method requires exclusive access to the database because detaching removes the database from the SQL Server instance. Users cannot access the database while it's detached. Other methods like backup/restore or Copy Database Wizard can work with active databases or use different mechanisms that don't require taking the database completely offline during the entire process.

Multiple choice technology programming languages
  1. Store all the main information regarding the records of a Job

  2. Its is used to view the PDF of the old records

  3. It is used to view the information online

  4. All of the Above

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

Metadoc appears to be a document management system that performs multiple functions: it stores comprehensive job record information, provides PDF viewing capabilities for historical records, and enables online information access. Since all individual options describe valid functions, 'All of the Above' is the correct choice.