Oracle and ADABAS Database Fundamentals

Covers Oracle database features including SQL, PL/SQL, data types, and functions, plus ADABAS database architecture and access methods, with some DB2 tools

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

Which of the following tool can be used to schedule work for DB2?

  1. Task Center
  2. Command Center
  3. Health Center
  4. Control Center
Question 2 True/False

If you use the CREATE DATABASE statement on an existing database, all data in the datafiles will be lost

  1. True
  2. False
Question 3 True/False

In Oracle, BLOBs have full transactional support

  1. True
  2. False
Question 4 True/False

It is a good practice to use ROWID as a table's primary key

  1. True
  2. False
Question 5 True/False

ALL scalar functions in Oracle return null when given a null argument.

  1. True
  2. False
Question 6 True/False

Within a single SQL statement, Oracle will increment the sequence only twice for each row.

  1. True
  2. False
Question 7 True/False

Oracle DATE columns always contain the date but not the time fields

  1. True
  2. False
Question 8 True/False

You may use two consecutive minus signs in arithmetic expressions to indicate the subtraction of a negative value

  1. True
  2. False
Question 9 True/False

Analytic functions compute an aggregate value based on a group of rows and return a single row for each group.

  1. True
  2. False
Question 10 True/False

Analytic functions compute an aggregate value based on a group of rows and return a single row for each group.

  1. True
  2. False
Question 11 True/False

The result of concatenating two character strings is always a VARCHAR2 character string.

  1. True
  2. False
Question 12 True/False

You use comments in a SQL statement to pass hints to the Oracle optimizer

  1. True
  2. False
Question 13 Multiple Choice (Single Answer)

ADABAS is a powerful and a flexible database management system. It derives its name from :

  1. Adjusting DAta BAse System
  2. Adaptable DAta BAse System
  3. Altering DAta BAse System
  4. Amending DAta BAse System
Question 14 Multiple Choice (Single Answer)

ADABAS has built its architecture on :

  1. Inverted List Model
  2. Relational Model
  3. Hierarchical Model
  4. Object Oriented Model
Question 15 Multiple Choice (Single Answer)

MPM is expanded as

  1. Multi Processing Mode
  2. Mega Processing Monitor
  3. Multi Processing Monitor
  4. Mega Processing Mode
Question 16 Multiple Choice (Single Answer)

Each record present in the ADABAS file is uniquely identified by :

  1. RABN
  2. ISN
  3. FIN
  4. MIN
Question 17 Multiple Choice (Single Answer)

When you want to locate a particular record in the adabas file and if you have value of the full key use :

  1. READ
  2. FIND
  3. GET
  4. PUT
Question 18 Multiple Choice (Single Answer)

Which Oracle access method is the fastest way for Oracle to retrieve a single row?

  1. Primary key access
  2. Access via unique index
  3. Table access by ROWID
  4. Full table scan
Question 19 True/False

A database trigger does not apply to data loaded before the definition of the trigger

  1. True
  2. False
Question 20 Multiple Choice (Single Answer)

Declare fvar number := null; svar number := 5 Begin goto <<>> if fvar is null then <<>> svar := svar + 5 end if;end;

  1. Error
  2. 10
  3. 5
  4. None of the above