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
  1. A Custom Object having a Standard Object as Master.

  2. A standard object having another Standard Object as Lookup

  3. A standard Object as a detail of a Custom Object

  4. Option 4

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

In Salesforce master-detail relationships, the detail side of the relationship MUST be a custom object - standard objects cannot be the detail in a master-detail relationship. A standard object can be the master of a custom object, and standard objects can have lookup relationships to each other, but a standard object cannot serve as the detail side when the master is a custom object.

Multiple choice technology
  1. Time card Application

  2. Word Processor

  3. Online Auction Management

  4. Inventory management

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

Data-centric applications focus primarily on data storage and management (like Time Card apps for tracking hours and Inventory management for stock data), while process-centric applications focus on business processes and workflows (like Online Auction Management which handles the bidding process). Word Processor is neither - it's a document creation tool, not characterized by data storage or business process management.

Multiple choice technology mainframe
  1. Bytes

  2. Data

  3. Records

  4. Units

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

In MVS (Multiple Virtual Storage) systems, datasets are organized collections of data. Within a dataset, data is organized into smaller units called records. A record is a single, complete unit of related information (like one row in a file). This is the fundamental hierarchical structure: dataset contains records, records contain fields/bytes.

Multiple choice technology
  1. Integration Service

  2. Repository Service

  3. Metadata Services

  4. Application Services

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

In Informatica PowerCenter, Integration Service is the runtime engine that moves data from source to target systems. Repository Service manages metadata, Application Services handle application-specific tasks, and Metadata Services provide metadata access.

Multiple choice technology
  1. Clusters

  2. Synonym

  3. Views

  4. Sequences

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

Sequences are database objects specifically designed to generate unique sequential numbers, often used for auto-incrementing primary keys. Clusters are for physical storage organization, synonyms are alternative names for objects, and views are virtual tables - none generate unique numbers.

Multiple choice technology testing
  1. To identify Java garbage collection issues and object cycling issues

  2. To identify and resolve Java bottlenecks and deadlocks

  3. To identify un-executed lines of code during unit testing

  4. None

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

Memory Analysis in JProbe helps identify Java garbage collection issues (objects not being collected, memory leaks) and object cycling problems (objects being created and destroyed excessively). It's not for finding bottlenecks/deadlocks (that's Performance Analysis), identifying unexecuted code (that's Code Coverage), or is irrelevant.

Multiple choice technology testing
  1. Create/Edit Setting, Attach to Session, Load Snapshots

  2. Load Snapshots, Attach To Session, Create/Edit Settings

  3. Attach To Session, Load Snapshots, Create/Edit Settings

  4. Create/Edit Settings, Load Snapshots

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

The correct workflow in JProbe is to first create or edit the analysis settings to configure what you want to measure, then attach to the application session to start profiling, and finally load snapshots to view the collected data. Loading snapshots before attaching would mean there's no data to view yet. This logical sequence ensures the profiler is configured before data collection begins.

Multiple choice technology testing
  1. Trigger

  2. Set Recording Level

  3. Configure Pool

  4. Leak Doctor

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

The 'Set Recording Level' option in JProbe allows you to control the granularity and amount of data collected during profiling. You can choose from different recording levels based on your needs - from detailed method-level tracking to high-level overviews. This helps manage the trade-off between comprehensive data collection and runtime overhead. Trigger, Configure Pool, and Leak Doctor are other JProbe features with different purposes.

Multiple choice technology platforms and products
  1. MySQL on Windows Azure

  2. SQL Server on Windows Azure

  3. Windows Azure as part of SQL Server

  4. All of the Above

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

SQL Azure (now called Azure SQL Database) is essentially SQL Server hosted as a service on the Windows Azure platform. It's not MySQL, and Windows Azure is not part of SQL Server - rather, SQL Server is part of the Azure platform.

Multiple choice technology platforms and products
  1. Collection of WorkGroups

  2. Collection of similar Work Objects

  3. Collection of ClassGroup

  4. None of the above

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

WorkPool in PEGA is a logical grouping mechanism that collects similar Work Objects together based on shared characteristics or criteria. This organization helps in managing and tracking related work items efficiently. WorkGroups and ClassGroups are different organizational structures in PEGA.

Multiple choice technology
  1. .asc, .prn, .txt, .csv, .xls, .mdb

  2. .asc, .txt, .csv, .xls., .dbf

  3. asc, .prn, .txt, .csv, .xls, .dbf

  4. asc, .prn, .txt, .csv, .xls, .xml , .dbf

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

BusinessObjects supports various file formats as data providers. Option D includes all common formats: .asc, .prn, .txt, .csv, .xls, .xml, and .dbf. These are all valid data source formats that can be imported into BusinessObjects universes or reports.