Holistic COC L - 4 Question WDDBA
Holistic COC L - 4 Question WDDBA
3. To make your website mobile friendly you can make your website.
A. Light C. Reactive
B. Responsive D. Fast loading
4. When you choose current industry accepted hardware software products you must consider your
A. Table C. Report
B. Query D. Form
6. Which process involves developing an approximation of the costs of resources needed to complete a project
7. In the database design which of the following is could be the first task
A. Identifying entity types c. identifying relationship types
B. Normalization D. Determine field domains
8. Below the following one is a process of analyzing the data objects and their relationship to the other objects?
9. Which operator can be used to free the memory allocated for an object in C++?
A. Free () C. UN allocated
B. Collect D. Delete
10. Which one of the following is an integrated part of database that can restore the database to the consistent state
of before failure?
11. The process of dumping data from database transaction log or file
A. Database backup c. Database restore \
B. Database recovery d. Database transaction
12. A set of objects that share the same attributes operation and relation ship
A. Object C. Interface
B. Class D. Coding
13. The process of extracting sharing characteristics from two or more class and combining them into a super class
A. Specialization C. Division
B. Generalization D. Separation
14. Designed to test and trial design to enhance precision by system analyst and user
15. Entity type that do not have key attribute (strong key) are called
A. Weak entity type C. Strong entity type
B. Weak attribute type D. Strong attribute type
16. Which of the following is true about PHP?
17. Which one of the following is should not be consider when we plan the database?
A. User need and requirement C. The complexity and simplicity of the work
B. The designer interest D. Feasibility of the database system
18. You run the select statement and multiple duplicate of values retrieved what key word can you use to retrieve
only the non-duplicate values /data
A. Duplicate C. Distinct
B. Individual D. Separate
A. Id C. text
B. date time D. number
23. Which one of the following is not necessary information to back up the database?
A. N12 C. XYZ
B. 123.45 D. 08GH
30. To bring solution to prevent-database system crash in your company what action you’re going to take?
32. Which key ensures that the relationship between primary key and related tables is maintained?
35. Which statement should you use to change existing data in one or more rows in a table?
A. Select C. Update
B. Insert D. modify
A. Select C. Update
B. insert D. drop
37. Which types of join should you use if you want to retrieve only match rows?
40. Which of the following terms refers to the degree to which data in the database system are accurate, correct
and consistent?
41. One of the following creates a virtual relation for storing the query?
A. Function C. Procedure
B. view D. entity
42. Which one of the following provides the ability to query information from the database to insert tuples into,
delete tuples from, and modify tuples in the database?
A. DML C. Query
B. DDL D. relational schema
43. Which one of the following related entity set has its own schema and there is an additional schema for the
relationship set?
44. Select * from employee where dep’t name =’’comp sei’’ in this SQL statement there is an error identify the
error
A. Select C. from
B. employee D. ’’comp sei’’
45. Which one of the following is not a data type in SQL server?
A. ID C. DOUBLE
B. DATETIME D. MONEY
A. Backup C. Security
B. Recovery D. access control
48. With DBMS which of the following is not the data definition language (DDL) Command
A. ALTER C. Create
B. Update D. Drop
49. In SQL which one of the following is a correct syntax to modify table
A. Alter table<table name > <column name ><data type ><field size><constraints >
B. Alter table add<column name ><data type><field size><constraints >
C. Alter table<table name > add <column name ><data type><field size><constraints >
D. Alter table<table name > drop <column name ><data type><field size><constraints >
50. Which of the following referential integrity constraints should be enforced to specify automatic deletion of
foreign key record when a record in the base table deleted?
51. All of the following can be considered as entity integrity constraint except
A. Unique C. identity
B. foreign key D. primary key
52. In the database design which of the following is could be the first task
54. In database relation no attribute of primary key can assume a value of null this type of constraint indicates
55. Which of the following data definition language adds one or more column to the existing table?
A. Update C. Create
B. Alter D. Add
56. Which of the following query selects the student whose fname begin with ‘cha’?
A. Diamond C. Ellipse
B. Rectangle D. Circle
58. In entity relationship diagram if we represent an entity with double rectangle then what it implies?
59. Suppose you have person table select * from person where first name like ‘f%’
A. Record which contain f% in their first name from person table
B. All record the first name begins with f from person table
C. Record which contain f in their first name from person table
D. All record the first name begins with person from person table
60. An attribute that calculated from other attribute example age can be calculate from birth date is called
61. Which DML language changes the value of one or more columns based on the condition
A. Select C. Delete
B. Update D. Create
62. Can be used a security mechanism by allowing users data without granting the users permission to directly
access the underline base table
Set .by YEMAN Y
A. Table C. Index
B. View D. Report
63. When the value is one or more attribute being used as foreign key must exist in another set of one or more
attributes in another table, we have created
A. MIN C. SELECT
B. MAX D. AVG
66. the different class of relation created by the technique for preventing modification anomalies are called
67. which of the following indicates maximum number of entities that can be involved in a relationship?
68. which type of entity cannot exist in the database unless another type of entity also exist in the database but
does not require that the identifier of that other entity be included as part of its own identifier
A. ALL C. Distinct
B. FROM D. Name
A. Table C. Relation
B. Values D. Field
73. In which normal form a composite attribute is converted into individual’s attribute
A. First C. Third
B. Second D. Fourth
75. All of the following are results of kaizen implementation in work place except
A. Supply/demand C. Advertising
B. Seminars D. Networking and referral
77. Which of the following of categorized as richest channel in conveying information effectively?
78. Create table employee (id integer, name varchar (20), salary money not null) which of these insert statement
will produce error
A. Insert into employee values (1005,’rach’,0)
B. Insert into employee values (1002,’joey’,335)
C. Insert into employee values (1007,’ross’,)
D. Insert into employee values (4502,’beza’,780)
79. An employee table to include the attributes whose value always have some value which of the following
constraints must be used?
A. Null C. Unique
B. Not null D. Distinct
80. An entity set that does not have sufficient attributes to form primary key is: -
81. Among the following term which one can be considered as multi value attribute?
82. Assume that there are two given tables people and language table under the same database name what will be
possible relationship between those tables
83. In flow chart which one of the following shows the decision that must be made?
84. All of the following are SQL server’s system database component except
A. Book C. Customer
B. Sex D. Material
86. With SQL how can you return the number of all record in the department table?
87. With SQL how can you return all record from table named employee sorted descending by first name?
A. Select * from employee order by first_name descending
B. Select * from employee order by first_name desc
C. Select * from employee order by first_name asc
D. Select * from employee order by first_name ascending
88. The presence of partial dependencies will be removed during
A. Scanners C. Digitalizes
B. Printers D. Touchpad
90. From the 5s procedures which one is used to remove unnecessary items from each area?
A. Standardize C. Shine
B. Sort D. sustain
91. The SQL statement that queries or reads data from a table is
A. Read C. Order
B. Select D. Query
92. With SQL how can you insert new record into firstname and last_name in the employee
A. Insert into employee (firstname,last_name)values (‘haimanot’,’aster’)
B. Insert into employee (‘haimanot’,’aster’)
96. Use the above table employee and department table that are realized with the dep’t number column which can
be SQL code to provide answer to the following question?
Find first name and salary of all female employees who are working in accounting department
A. select gender from employee where deptname =’accounting’
B. select first name, salary from employee where gender =’female’ and department number in (select dep’t
number from department table where dep’t name =’accounting’)
C. select gender, first name, salary from employee where gender =’female’ and deptname =’accounting’
D. select first name salary from employee department where gender =’female’
97. the process of bringing together all of the modules that a program comprises for testing purpose is?
98. A type of backup in which backup is taken when database is offline not accessible for updating and users
cannot do anything on the database
A. Partial C. Hot
B. Cold D. Shadow
101. Type of documentation that consists of the details of steps and procedures for using database is
102. In which step of database normalization is that no non primary key field is transitively dependent on the
primary key
103. Which one is the correct order in the development of database design?
A. Requirement analysis--- Logical design --physical design ---implementation --maintenance
B. Requirement analysis--- physical design -- Logical design ---implementation --maintenance
C. Requirement analysis--- physical design -- implementation --- Logical design --maintenance
D. Requirement analysis--- Logical design --physical design --- maintenance -- implementation
104. The following are property of quality database except?
105. How would you resolve the conflicts occurred at your team organization?
A. Discussing with team member c. blaming the team member
B. Dividing the team member D. making incentive in some members
106. In a given organization the only communication channel is internet if one faces a serious problem
unexpectedly how he/she communicate with her/him?
108. Improvement of product quality wastage minimization work place safety and efficient resource utilization
in the organization can be achieved by implementing
A. BPR C. KAIZEN
B. BSC D. SMT
A. All entities attributes and their relationship C. Syntactic information about the data
B. Constraints on the data D. Security and integrity information
119. The process of running the database system with the target of finding programming error
A. Implementing C. Testing
B. Planning D. Operational maintenance
120. Reporting to make sure that the type of and quality end of product meet the needs of the user
122. Among the following one is a device that connects networks with different protocols?
A. Hub C. Switch
B. Gate way D. Router
123. Connecting web site to backend servers processing the data and controlling the behavior of the higher
layers are done by?
124. IN work place which are not the main factor model of job performance
125. Which one of the following techniques can be used for optimizing backed up data space?
127. In DBMS which of the following is not data definition language (DDL) Command
128. SQL statements to change all employee salary whose names begin with the letter ‘SH’ from the employee
table
A. Modify employee set salary =4000 where name like ‘SH %’
B. UPDATE employee set salary =4000 where name like ‘SH %’
C. Modify employee set salary =4000 where name like ‘%SH’
D. UPDATE employee set salary =4000 where name like ‘%SH’
129. The type of diagram in which the operations are specified an object is considered as?
130. Among the following which one is an on-screen display that acts an interface between the user and the
computer
A. Mouse C. Printer
B. Monitor D. Scanner