These are stapes in gathering data to identify business requirement except
A. Insure stockholders involvements at all level of involvements B. Give training on how to operate user and technicians C. Understand the need of your Clint D. Identify the key people who will be affected by the project 2. Using database management system is preferable than file system when A. The number of record is small B. The data we need to keep is very secure C. The speed of accessing data is our first priority D. The company have no capacity to add new hardware and software 3. You create a table called department that store company departments’ detail. the table contain department id data type int and department name data type varchar(50). the primary key of this table is foreign key for other table. you selected department id as primary key of the table the reason to do this is A. It identifies uniquely B. It is easy to remember C. It is sequential D. It needs lesser storage space 4. The correct statement regarding entity integrity is A. A primary key cannot have null values B. A relation can have only one key C. A foreign key should contain the same data type in both tale D. The foreign key cannot have null values 5. Which of the following is an advantage of view? A. Assigning index to tables B. Store records C. Hiding complex queries D. Storing definition of database objects 6. In order for two queries to be UNION-compatible, they must: A. Both have compatible data type for each column B. Both have the same number of lines in their SQL statements C. Both return a least one row D. both has the same number of records 7. You have a bank database system to store account transaction data. What do you do to get ordered transaction data from the most recent to the oldest transaction A. Search “transaction date” in descending order B. Search “transaction date” in ascending order C. Search “transaction id” in descending order D. Search “transaction ID” in ascending order 8. An illegal expression used in SQL A. Select null from employee; B. Select name from employee; C. Select name from where salary=null; D. Select *from employee 9. A correct statement regarding TRUNCATE and delete operation in table A. Truncate operation cannot be restored B. Truncate operation drop the table C. Delete operation cannot be restored D. Delete operation is much faster than truncate 10. You are a database developer for an insurance company. Every insurance policy is managed by one and only one product manager. one product manager can manage many policies. how can you represent that information in the database A. Include the manager id in the police entity B. Include the policy id in the manager entity C. Create a relationship entity formed by the policy id and the manager id D. Include the manager id in the policy entity and the policy id in the managers entity 11. Incorrect statement about data dictionary A. The data dictionary is normally managed by the database administrator B. The data dictionary is a tool used exclusively by the database administrator C. The data dictionary contains the name and description of each data element D. Data element in the database can be modified by changing the data dictionary 12. Indexes are created in most RDBMSs to A. Provides a quicker way to store data B. Increase the cost of implementation C. Provide rapid random and sequential access to base table data D. Decrease the amount of disk space utilize 13. What do you do if an important table in your database is removed accidentally A. Undo the operation to bring it back to its prior state B. Get the delete data from recycle been and restore it C. Create the table and add all the data from documents D. Restore the table from backup file 14. A power failure occurred while the database was operating unfortunately, the UPS did not function properly and did not stop the SQL server in a proper manner once power comes back what do you have to do your server to recover the transaction that have been committed but not check pointed? A. You need to back up the transaction log, restore the database from the last full database backup and then restore the transaction logs B. Nothing SQL server will recover automatically rolling back pending transaction nd rolling forward committed ones C. Nothing. All transaction since the last checkpoint are lost the effect of the other are in the database D. Run roll forward all transaction 15. While gathering data to determine the organization business requirement you might take records of the organization like, annual report and organizational policies. these kinds of information resources are considered as A. Tertiary source B. Secondary source C. Primary source D. Informal source 16. A database technical documentation should contain all except A. Description of what the table means and how I is functionally used B. Description of what each attribute means C. Explanation of the relationship D. Description of clients 17. Not possible tasks to do using the alter table command A. Change the name of the table B. Change the name of the column C. Delete a column D. Add a column 18. A database administrator is not forced to participate in A. Conceptual database design B. Determine how to implement conceptual schema C. Implement security and integrity D. Maintain a computer system 19. You create a foreign key constraint and need to update the value in the referencing column. If the value in the referenced columns are updated which referential integrity command should used. A. ON UPDATE RESTRICT B. ON UPDATE NO ACTION C. ON UPDATE CASCADE D. ON UPDATE SET DEFAULT 20. YOU ARE ASSIGN TO LEAD A SMALL TEAM IN YOUR CAMPANY THAT MANAGE DATABASE.IDENTIFY THE WRONG STATMENTIN LEADING THE TEAM A. Assigning responsibility to team members B. Perform all duties of the team by your own C. Processes necessary leadership skill D. Understand the team role 21. You have just implemented a solution crash in tour company and you want to celebrate the success A. Test the solution in a small organization B. Gather more information about the issue C. Document the issue and the solution that has implemented D. Escalate the issue Column A Column B 1) Identify information gaps and proposing a A. Analysis solution for the organization Q B. Arrow with unique table 2) Fact finding and proposing solution about the C. Attribute problem of the organization A D. Data control language(DCL) 3) The process of construction a model of the E. Data definition language(DDL) database used the organization G F. Data manipulation language(DML) 4) The processes of testing and deployment of the G. Design designed database M H. Diamond 5) Administering and maintaining a deployed I. Double ellipse database system P J. Double rectangle 6) Database object about which information is to be K. Ellipse collected L L. Entity 7) Identify or describe database object property C M. Implementation 8) The processes of removing duplicated records o N. Join 9) An SQL clause combines records from two or O. Normalization more tables in a database N P. Operation and support 10) In ER diagram Multi-valued attributes represented Q. Planning I R. rectangle 11) In ER diagram relationship are represented H 12) In ER diagram entities are represented R 13) IN ER diagram the data flow is represented B 14) Language that used to create structure of a database E 15) Language that used to store, retrieved and access data in a database F 1. A method of data collection in which the situation of interest is watched and the relevant facts action and behaviors are recorded. A. Interview B. Observation C. Survey D. Questionnaire 2. Assume that there is a table name R with attributes A,B,C,D,AND A is the primary (determinant) of R then which of the following is true about fully functional dependency. A. {a}--{B,C,D} B. {A,C}----{B,D} C. {B,C}---{A,D} D. {B,C,D}----{A} 3. You run a select statement and multiple duplicates of value are retrieved. what keyword can you use to retrieve only the non- duplicate value? A. Duplicate B. Individual C. Distinct D. Separate 4. In database modeling ,asset of objects with the same property or characteristics is termed as: A. Entity instance B. Entity type C. Relationship type D. Relationship instance 5. With SQL, WHICH TYPES OF join should you use if you want to return only matched rows? A. Inner join B. Left outer join C. Right outer join D. Full outer join 6. Dropping a table will remove: A. Only the task definition, but not the store value B. Only the permission specified for the table C. Only the stored value, but not the table definition D. The table definition and stored value 7. Among the following which one can be considered as composite attribute for employee table A. Address B. Salary C. Id D. Sex 8. If you have two entity that have a many to many(M:N) A. YOU CRATE TWO TABLE BY DEFINING THE COLUMN AS FOREIGN KEY TO THE M SAID OF THE ENTITY B. YOU CREATE EACH INDIVIDUAL RELATION AS SEPARATE TABLE AND INTRODUCE A THIRD(NEW)TABLE BY TALKING A PRIMARY KEY OF THE TWO TABLE COMBINED TWO TABLE TOGETHER AS PRIMARY KEYS AND USED AS FOREIGN KEYS C. YOU CREATE THREE SEPARATE TABLES WITHOUT DEFINING A FOREIGN KEY TO THE TABLE ON THE M SAIDE THE RELATIONSHIPE D. YOU CREATE TWO TABLE BY DEFINING THE COLUMN AS FOREIGN KEY TO THE N SAID OF THE ENTITY ON THE RELATIONSHIP 9. HOW CAN YOU CHANGE “BERTUKAN” IN TO “BIRTUKAN” IN THE “LASTNAME” COLUMN IN THE STUDENT TABLE A. UPDTE STUDENT SET LAST NAME =’BERTUKAN’ IN TO LAST NAME=’BIRTUKAN’ B. MODIFY STUDENT SET LANTNAME=’BIRTUKAN’ WHEE LASTNAME=’BERTUKAN’ C. UPDATE STUDENT SET LASTNAME=’BIRTUKAN’ WHERE LASTNAME=’BERTUKAN’ D. MODIFY STUDENT SET LASTNAME=’BERTUKAN ‘IN TOLASTNAME=’BIRTUKAN’ 10. WHICH OF THE FOLLOWING ACTIVITY HELP YOU TO DETERMIN THE ENTITY, ATTRIBUTSAND RLATIONSHIPS OF DATA A. CONCIPUTAL DATABASE MODLING B. Logical database modeling C. Physical database modeling D. Database implementation 11. In the relational model, cardinality is termed as A. Number of tables B. Number of attributes C. Number of tables D. Number of constraints 12. Where does the DBMS store the definitions of data elements and their relationship A. Where does the DBMS store the definition of data elements and their relationship? B. Data file C. Index D. Data dictionary E. Data map 13. An entity set that does not have sufficient attributes to form a primary key can be considered as A. Strong entity set B. Weak entity set C. Simple entity set D. Primary entity set 14. With sql how can populate ‘training’ table with rows from employee table? A. Insert in to 1st name, last name from employee B. Select first fname,lname into employee from training C. Insert into fname,lname employee from training D. Select fname,lname into training from employee 15. An instance of relational schema R(A,B,C)has distinct value for A including Null values. which one of the following is true? A. A is candidate key B. A is non-key attribute C. A is primary key D. A is foreign key 16. The data base design that consists of multiple table that are linked together through matching data stored in each table is termed as: A. Hierarchical database B. Network database C. Relational database D. Object oriented database Column A 15) A way of storing and organizing data in a 1) The processes of periodically talking a copy of computer H the database and log file onto offline storage Column B media Q A. Pseudo code 2) Sort a result set I B. Implementation 3) Value of one attribute uniquely determine the C. Relationship value of another attribute S D. Union 4) No primary key value can be null E E. Entity integrity 5) The number of participating entities in the F. First normal form relationship M G. Drop 6) A property of an entity or relationship O H. Data stricture 7) Building working model of a database system I. Order by R J. Entity type 8) A collection of normalized table N K. Second normal form 9) Represent a value for a column that is L. Null currently unknown or is not applicable for this M. Degree of relationship record L N. Third normal form 10) The physical relation of the database and O. Attribute application designs B P. Relational database 11) Method used to define an algorithm A Q. Backup 12) Combine the result –set of two or more select R. Prototyping statement D S. Functional dependency 13) No partial dependencies K T. Backup 14) A set of meaningful association among entities C