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 web technology
  1. SQL server 2005

  2. MS Access

  3. MS Excel

  4. SQL Server Express

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

ASP.NET 2.0's membership and roles system stores user authentication and authorization data in SQL Server Express by default. This provides a free, embedded database option for user management without requiring a full SQL Server license.

Multiple choice technology web technology
  1. Server Explorer

  2. Solution Explorer

  3. Properties Window

  4. Toolbox

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

Server Explorer in Visual Studio enables you to work with database connectivity - you can create, modify, and delete database connections, view database objects, and drag tables onto your designer. Solution Explorer manages project files, Properties Window shows component settings, and Toolbox contains UI controls.

Multiple choice technology mainframe
  1. unordered and non hierarchical data base

  2. sequential and hierarchical data base

  3. sequential and non hierarchical data base

  4. unordered and hierarchical data base

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

GSAM (Generalized Sequential Access Method) is designed for sequential, non-hierarchical data storage. Unlike other DL/I access methods, GSAM does not organize data in hierarchical parent-child relationships but processes records sequentially.

Multiple choice technology
  1. MyCo-Orders

  2. Orders

  3. MyCoOrders

  4. mycoorders

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

Pega's naming convention for RuleSets recommends PascalCase (compound words with each word capitalized, no spaces or hyphens). 'MyCoOrders' follows this convention correctly. 'MyCo-Orders' uses a hyphen (incorrect), 'Orders' is a single word (not a proper compound), and 'mycoorders' is lowercase (incorrect). The correct format is company name concatenated with purpose, both in PascalCase.

Multiple choice technology
  1. One-to-one

  2. Many-to-one

  3. One-to-many

  4. Many-to-many

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

A Folder can contain multiple items, and each item can belong to multiple Folders simultaneously. This many-to-many relationship is fundamental to Pega's folder structure, allowing flexible categorization where a work object can appear in different folders without duplication.

Multiple choice technology
  1. Is any set of related work objects

  2. Causes the system to store the instances corresponding to two or more concrete classes that have a common key format in a single database table

  3. Is unrelated to your application’s Reporting requirements

  4. None of the above

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

A class group enables multiple concrete classes with a common key format to share a single database table. This optimizes storage and supports reporting across related classes. Class groups are directly related to reporting requirements in Pega applications.

Multiple choice technology databases
  1. True

  2. False

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

DB2 is indeed a relational database management system (RDBMS) from IBM. It follows the relational model with tables, rows, columns, keys, and uses SQL as its query language. This is a fundamental characteristic of DB2.

Multiple choice technology databases
  1. Oracle Advanced Queuing

  2. DBMS_JOB

  3. DBMS_SQL

  4. Pipelined Functions

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

Oracle Advanced Queuing enables asynchronous message processing. DBMS_JOB schedules jobs for concurrent execution. Pipelined Functions allow streaming and parallel processing. DBMS_SQL is for dynamic SQL execution within a single program - it does NOT facilitate running multiple PL/SQL programs simultaneously.

Multiple choice technology databases
  1. SELECT name FROM USER_DEPENDENCIES WHERE referenced_name = 'DBMS_OUTPUT.PUT_LINE'

  2. SELECT name from ALL_SOURCE WHERE owner = USER AND name = 'DBMS_OUTPUT.PUT_LINE'

  3. SELECT DISTINCT name from ALL_SOURCE WHERE INSTR (text, 'DBMS_OUTPUT.PUT_LINE') > 0

  4. SELECT DISTINCT name from USER_SOURCE WHERE INSTR (UPPER (text), 'DBMS_OUTPUT.PUT_LINE') > 0

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

USER_SOURCE contains PL/SQL source code for your schema. INSTR(UPPER(text), 'DBMS_OUTPUT.PUT_LINE') searches within the code body for calls to that procedure. DISTINCT removes duplicates. Option A uses dependencies (not body content). B searches wrong column and uses ALL_SOURCE. C uses ALL_SOURCE instead of USER_SOURCE.