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. Cursor table

  2. Table filter

  3. Dynamic procedure

  4. View

  5. Summary table

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

Without seeing the scenario, this appears to be about choosing between database structures for a reporting/analysis need. A View is the best choice when you need to query data from multiple tables without duplicating data. Views provide a logical abstraction layer. Table filter and dynamic procedure are not standard SQL structures, while a cursor table would be inefficient.

Multiple choice technology databases
  1. Structure

  2. Design issue

  3. Data source

  4. Storage issue

  5. Operational process

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

Without the full context, in data modeling, security review typically occurs during the design issue phase where access controls, privacy requirements, and security constraints are evaluated. Structure phase defines the model, data source phase identifies data origins, storage issue phase deals with physical storage, and operational process phase covers maintenance. Security considerations must be addressed during design.

Multiple choice technology databases
  1. Data about data

  2. Describes a data dictionary

  3. Self-describing

  4. Includes user data

  5. Supports its own structure

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

Metadata is 'data about data' - it describes structure, format, relationships, and other characteristics of data. It supports its own structure, is self-describing, and describes what's in a data dictionary. What metadata does NOT include is the actual user data or business data itself - that's the content, not the description. Option D correctly identifies that user data is not metadata.

Multiple choice technology testing
  1. Analysis

  2. Controller

  3. File server

  4. Load generator/host

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

The load generator (also called the host) is the machine that actually executes Vuser scripts and collects performance metrics during the test run. It monitors system resources, response times, and other performance data locally, then sends this data to the Controller. Analysis tool processes data after the run, and Controller orchestrates but doesn't store raw monitoring data.

Multiple choice technology testing
  1. At the end of the action section

  2. At the beginning of the action section

  3. Immediately after the rendezvous function

  4. Immediately before the rendezvous function

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

The Ir_start transaction should be placed immediately after the rendezvous point to measure the performance of the synchronized action. Rendezvous points cause Vusers to wait until all arrive, then proceed simultaneously. Starting the transaction after this point captures the combined load impact of all concurrent users. Placing it before would measure waiting time, and end/beginning of action would miss the synchronization effect.

Multiple choice technology testing
  1. Debug

  2. Full Load

  3. Top Time

  4. Scalability

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

During full load tests, standard logging is recommended to balance troubleshooting capability with generator performance. However, standard logging is specifically recommended for benchmark or run-time execution tests like 'Top Time' or load tests to prevent I/O overhead. Extended logging is preferred during debug runs.

Multiple choice technology databases
  1. Remote DBMS

  2. Relative DBMS

  3. Relational DBMS

  4. Reliable DBMS

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

RDBMS stands for Relational Database Management System. It organizes data into tables with relationships between them, based on the relational model proposed by E.F. Codd.

Multiple choice technology platforms and products
  1. Repository

  2. Tablespace

  3. Temp Tablespace

  4. Workspace

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

Objects created in OWB are first stored in the Workspace, which serves as a staging area for development work. The workspace holds objects before they are deployed to the actual repository. This separation allows for version control and testing before making changes permanent.

Multiple choice technology platforms and products
  1. True

  2. False

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

When importing objects from the database into OWB, only metadata (structure definitions) is imported, not the actual data rows. The repository stores design information about objects - table definitions, column types, constraints - but remains separate from the operational data itself.

Multiple choice technology platforms and products
  1. Free with Oracle

  2. Builds complex logic easily

  3. Fastest ETL tool available

  4. Can be installed in mobile

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

OWB is included at no additional cost with Oracle Database licenses and provides graphical tools for building complex ETL transformations. However, claims about it being the 'fastest' tool are subjective, and OWB is server-based enterprise software that cannot run on mobile devices.

Multiple choice technology web technology
  1. sessions stored in state service

  2. sessions stored in server's inbuilt memory.

  3. Both A and B

  4. sessions stored in database

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

The answersint portal uses database-based session storage. Sessions are persisted in a database rather than server memory (B) or a state service (A). This approach provides better scalability, persistence across server restarts, and support for distributed deployments. Option C claims 'Both A and B' which is incorrect.