wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Pagtatapos Isa

Total questions: 45

Worksheet time: 33mins

Name
Class
Date
1.

The process on how the computer must work with the data.

(a)  

2.

A body of information (i.e. electronic files) that needs to be shared but has no network connection.

(a)  

3.

Having multiple copies of data increases the chances for a copy of the data to be susceptible to unauthorized access.

(a)  

4.

It exists when the same data are stored unnecessarily at different places.

(a)  

5.

The condition in which all of the data in the database are consistent with the real-world events and conditions.

(a)  

6.

There are no data inconsistencies.

(a)  

7.

The data will always yield consistent results.

(a)  

8.

It develops when not all of the required changes in the redundant data are made successfully.

(a)  

9.

It exists when different and conflicting versions of the same data appear in different places.

(a)  

10.

It shows how the human being views the data

(a)  

11.

The process of creating a specific data model for a determined problem domain

(a)  

12.

It is used to refer to the implementation of a data model in a specific database system.

(a)  

13.

It refers to a characteristic of an entity.

(a)  

14.

It describes an association among entities.

(a)  

15.

An employee may learn many job skills, and each job skill may be learned by many employees. Database designers label the relationship.

(a)  

16.

A retail company’s management structure may require that each of its stores be managed by a single employee. In turn, each store manager, who is an employee, manages only a single store.

(a)  

17.

It refers to the time-stamped commercial document that itemizes and records a transaction between a buyer and a seller. If goods or services were purchased on credit, the invoice usually specifies the terms of the deal and provides information on the available methods of payment.

(a)  

18.

It defines the environment in which data can be managed and to work with the data in the database.

(a)  

19.

The conceptual organization of the entire database as viewed by the database administrator.

(a)  

20.

A collection of like entities.

(a)  

21.

Representational data models represent data by using record structures.

(a)  

22.

It refers to the structure that makes the search for particular database records efficient.

a)

Object data model

b)

Followers

c)

Access path

d)

Relationship

23.

It describe the properties of an object.

a)

Schema

b)

Relation

c)

Attributes

d)

Data Design

24.

Two or more entities represents an association among

the entities.

a)

Models

b)

Relationship

c)

Prototype

d)

attributes

25.

A collection of concepts that can be used to describe the structure of a database.

a)

Data Model

b)

Data Design

c)

Data Attributes

d)

Data Collection

26.

It is a composite data type consisting of a group of related data items stored as fields, each with its own name and datatype.

a)

PL/SQL Record

b)

PL/SQL Transaction Record

c)

PL/SQL Transaction

d)

PL/SQL Record Transaction

27.

What is the syntax in defining a record?

a)

record_name cursor_name&ROWTYPE

b)

record_name table_name%ROWTYPE

c)

record_name table_name%TYPE

d)

record_name cursor_name%TYPE

28.

It allows us to declare a variable as a record based on a particular table's structure.

a)

%TYPE

b)

%ROWTYPE

c)

%TYPEROW

29.

PL/SQL records must:

a)

Have one or more components/fields of any scalar or composite type

b)

have the same as rows in a database table

c)

can be assigned initial values and can be defined as NULL

d)

can be components of other records (nested records).

30.

It is the keyword that defines the structure of your record.

a)

ROWTYPE

b)

TYPE

c)

RECORD

d)

TRANSACT

31.

When defining a record, It must include at least one field and the fields may be defined using scalar data types such as DATE, VARCHAR2, or NUMBER, or using attributes such as %TYPE and %ROWTYPE.

a)

True

b)

False

32.

You can declare a type (and a record based on the type) in an outer block and reference them within an inner block.

a)

True

b)

False

33.

Types and records are composite structures that can only be declared in a specific location.

a)

True

b)

False

34.

The type and the record declared in the outer block are

not visible within the outer block and the inner block.

a)

True

b)

False

35.

It is a named set of many occurrences of the same kind of data stored as a variable.

a)

PL/SQL Sets

b)

PL/SQL Frequency

c)

PL/SQL Collection

d)

PL/SQL Records

36.

It is a type of composite variable, similar to userdefined

records.

a)

Sets

b)

Frequency

c)

Collection

d)

Records

37.

It is based on a single field or column

a)

INDEX BY table

b)

INDEX BY table of records

38.

It is based on a composite record type

a)

INDEX BY table

b)

INDEX BY table of records

39.

Every INDEX BY table must have a _______ that serves as an index to a data

a)

UNIQUE KEY

b)

FOREIGN KEY

c)

PRIMARY KEY

d)

CONSTRAINT

40.

This key must be a meaningful business data (e.g. employee ID)

a)

FOREIGN KEY

b)

PRIMARY KEY

c)

UNIQUE KEY

d)

CONSTRAINT

41.

TYPE type_name IS TABLE OF DATA_TYPE

INDEX BY PRIMARY_KEY_DATA_TYPE;

identifier type_name;


This is the syntax of an INDEX BY table

a)

True

b)

False

42.

DECLARE

TYPE type_name IS TABLE OF DATA_TYPE

INDEX BY PRIMARY_KEY_DATA_TYPE;

identifiertype_name;

BEGIN

FOR record IN (SELECT column FROM table)

LOOP

identifier(primary_key) := record.column;

END LOOP;

END;


This is the syntax to populate the INDEX BY table

a)

True

b)

False

43.

An INDEX BY table can have multiple data fields

a)

True

b)

False

44.

If the field can be a composite data type (e.g. RECORD), it is called the INDEX BY table of records.

a)

True

b)

False

45.

The record in the INDEX BY table of records can be %ROWTYPE or a user-defined record.

a)

True

b)

False