0% found this document useful (0 votes)
2K views4 pages

ICT COC DBA Level 4

The document contains questions about database concepts including data modeling, normalization, SQL, transactions, and data definition language commands. It tests knowledge across conceptual, logical and physical database design as well as relational database operations. The questions cover topics such as data schemas, primary and foreign keys, transactions, joins, and data definition language statements.

Uploaded by

simachew takele
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views4 pages

ICT COC DBA Level 4

The document contains questions about database concepts including data modeling, normalization, SQL, transactions, and data definition language commands. It tests knowledge across conceptual, logical and physical database design as well as relational database operations. The questions cover topics such as data schemas, primary and foreign keys, transactions, joins, and data definition language statements.

Uploaded by

simachew takele
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Abren Endeg ICT COC DBA LEVEL 4

______1. It defines how and where data are organized in physical data storage.
A. External Schema
B. Internal Schema
C. Conceptual Schema
D. External and Conceptual Schema
______2. The database administrator of your company created a database called HR for the
employee table of the GENERAL schema, because many users frequently use this table.
As a user of the database, you created a table called employee in your schema. What
happens when you execute this query? SELECT * FROM employee;

A. You obtain some of record retrieved from the employee table that belongs to your
schema.
B. You get an error message because you command that supplied was wrong.
C. You obtain the all records of the employee retrieved from the database called HR.
D. You obtain the results retrieved from HR database directly.

______3. During modeling your data, Entity Relationship is applied at


A. Conceptual database
B. Schema refinement
C. Physical refinement
D. Applications and security

______4. Criteria that should not be considered when evaluating or assessing requirement
analysis?
A. Need assessment
B. Correctness
C. Speed
D. Consistency

______5. The SQL command that you use to define the primary key for a existing table
called 'Employee' with the primary column to be 'empid'?

A. ADD TABLE Employee ADD PRIMARY KEY (empid)


B. ATTACH TABLE Employee ADD PRIMARY KEY (empid)
C. ADD TABLE Employee ATTACH PRIMARY KEY (empid)
D. ALTER TABLE Employee ADD PRIMARY KEY (empid)
______6. While checking normalization process, the problem that doesn’t exist on
transitive dependency is
A. Insertion Anomaly
B. Modification Anomaly
Abren Endeg ICT COC DBA LEVEL 4

C. Deletion Anomaly
D. Revoke Anomaly
______7. You need to produce a report for mailing labels for customers. The
mailing label must have only the customer name and address. The CUSTOMERS
table has these columns, ID ,NAME,ADDRESS,PHONE ,the SELECT statement to
accomplishes this task?
A. SELECT*FROM customers;
B. SELECT name, address FROM customers;
C. SELECT id, name, address, phone FROM customers;
D. SELECT cust_name, cust_address FROM customers;
______8. If the maximum cardinality is equal to 1 in both directions of a relationship, then
it is classified as:
A. A. One-to-one
B. Many-to-many
C. B. One-to-many
D. Optional
______9. How do change the PRICE of BOOK whose id =B001 to value of 600

A. CHANGE BOOK

SET PRICE =600

Where ID =’B001’;

B. UPDATE BOOK

SET PRICE =600

Where ID =’B001’;

C. UPDATE TO CHANGE BOOK

SET PRICE =600

Where ID =’B001’;

D. GRANT BOOK

SET PRICE =600

Where ID =’B001’;

______10. The EMP table has these columns: ENAME ,SALARY ,HIRE_DATE , and the
Management wants a list of names of employees who have been with the company for
more than five years. the SQL statement that displays the required results?
Abren Endeg ICT COC DBA LEVEL 4

A. SELECT ENAME FROM EMP WHERE SYSDATE-HIRE_DATE > 5;


B. SELECT ENAME FROM EMP WHERE HIRE_DATE-SYSDATE > 5;
C. SELECT ENAME FROM EMP WHERE (SYSDATE-HIRE_DATE)/365 > 5;
D. SELECT ENAME FROM EMP WHERE (SYSDATE-HIRE_DATE)* 365 > 5;

______11. While listing limitation of File Processing System identify the wrong statement?
A. Data redundancy & inconsistency available.
B. Difficult in accessing data
C. Data isolation and integrity.
D. Concurrent access is possible.
______12. How to understand the hierarchical data model
A. Allows a node to have more than one parent.
B. Relationships are represented by a rectangle .
C. Can be represented as a tree graph with records appearing as nodes.
D. Represents modern file processing
______13. Information of an organization can gathered by
A. Interviewing end users
B. Imagining business forms
C. Guessing business rules
D. Stealing the organizations document
______14. The Entity Relationship (E-R) Model
A. Entities are represented by circle
B. It Represents conceptual view
C. It corresponds to row
D. Attributes are represented by rectangle
______15. Removal of transitivity property should be full filled in
A. First Normal form
B. Third Normal form
C. Second Normal form
D. Fourth Normal form
______16. If relation R has 5 tuples and relation S has also 7 tuples, then Cartesian product
of R and S will have
A. 5+7 tuples
B. 7-5 tuples
C. 5X7 tuples
D. 5/7 tuples
______17. How do you prevent system privileges deletion and updating authority on PRICE
and YEAR column of the CATALOGUE table from user Mohammed
A. GRANT DELETE, UPDATE (price,year) ON catalogue From Mohammed
B. ALLOW DELETE, UPDATE (price,year) ON catalogue From Mohammed
Abren Endeg ICT COC DBA LEVEL 4

C. REVOKE DELETE, UPDATE (price,year) ON catalogue From Mohammed


D. DENY DELETE, UPDATE (price,year) ON catalogue From Mohammed
______18. Two concurrent transactions are active in your system. The first transaction
modifies data in a table. The second transaction sees those modifications before they are
actually committed to the database. The first transaction then rolls back the
modifications. The type of data problem has to occurred?
A. Phantom read
B. Repeatable read
C. Non repeatable read
D. Dirty read
______19. Referential integrity dictates that:
A. The value of a primary key must appear in a foreign key of the related table.
B. The value of a foreign key must appear in a primary key of the related table.
C. The value of a primary key cannot appear in a foreign key of the related table.
D. The value of a foreign key cannot appear in a primary key of the related table.
______20. The language associated with a database management system that is employed by
end users and programmers to alter data values in the database is the:
A. Data manipulation language.
B. Data presentation language.
C. Data translation language.
D. Data definition language.
______21. Identify three Data Definition Language commands:
A. Create, Alter, Delete
B. Insert, Update, Delete
C. Create, Insert, Drop
D. Create, Alter, Drop

You might also like