Database Level-III: February 2017
Database Level-III: February 2017
Database Level-III: February 2017
1. If a product can be manufactured in many plants,and a plant can manufacture many product, this
is an example of which type of relationship?
SELECT*FROM employee;
A. You obtain the all records of the employee retrieved from the database called hr.
B. Yu obtain some of record retrieved from the employee table that belongs to your schema
C. You get an error message because you command that supplied was wrong.
D. You obtain the results retrieved from hr database directly.
4. During the conceptual design phase what will happen
A. The internal components of the application are designed.
B. Normalization takes place.
C. New entities may be are written
D. Program specification are written
5. In DBMS, which of the following is an advantage?
A. Requires expertise and resources to administer
B. Initial training required for all users
C. Fascinated development of new application program
D. Cost of hardware and software
6. In SQL server, which one of the ff is a wrong statement?
A. Each entity name should be unique in the same database
B. Two attributes of an entity type can have the same
C. Count function does not return a null if no rows satisfy the WHERE clause.
D. In operator allows you to specify multiple values in WHERE clause
7. With SQL HOW CAN YOU INSERT NEW RECORD INTO Firstame and Lastname columns in
the ”EMPLOYEE” table?
A. Insert into employee (first name, last name) values (‘haimanot’, 'aster’)
B. Insert into employee(‘haimanot’, 'aster’)
C. Insert values into employee (‘haimanot’, ’aster’)
D. Insert into (firstname, lastname)values (haimanot’, ’aster')
8. The presence of partial dependencies will be removed during:
MATCHING