Level 3-1
Level 3-1
a method of data collection in which the situation of interst is watched and the relevant
facts,actions and behaviours are recorde.
2. assum that there is atable named R with attributes A,B,C and D, and A is the primary
key(determinant) of R,then which of the following is true aboute fully function 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 duplicate of values are retrived.what keyword can you use
to retrieve only the non-duplicate value?
A.duplicate
B.individual
C.distinct
D.separate
4.in database modeling, a set of objects with the same properties or characteristics is term.
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.
A.inner join
10. which of the following referential integrity constraint should be enforced to specify automatic
deletion of a foreign key record when a record in the base table is deleted.
A. on drop cascade
11. all of the following can be considered as entity integrity constraint Except:
D.database implemention
A.number of tuples
B.number of attributes
C. number of tables
D. number of constraints
14. where does the DBMS store the definition of data elements and their relationship?
A. data file
B.index
C.data dictionary
D. data map
15. an entity set does not have sufficient attributes to from a primary key can be considered as:
16. with sql,how can you populate’TRAINING’ table with rows from EMPLOYEE
18. with sql,how can you return all the records from a table named ‘’employee’’ sorted descending by
‘’firstname’’?
19. while listing limitation of file processing system identify the wrong statement?
A.student
B.address
C.birth date
D. course
A. conceptual database
B. schema refinement
C.physical refinement
22. all of the following are sql servers system database components except?
A. master database
B.conventional database
C. model database
D. TempDB database
23. assum that there are two given tables,MOTHER table and CHILD table under the same database
name. what will be the possible relationship between those tables?
A. one-to-money
B. one-to –one
C. many-to-many
D. has no relation
24. which one of the following is not a data type in sql server?
A.ID
B. date/time
C. double
D.money
Select employeeidno from employeestatcstable where salary between 30000 AND 50000;
A. EMPLOYEEIDNO specifies name of the table
B. EMPLOYEESTATICSTABLE specifies name of the column
C. EMPLOYEESTATICSTABLE specifies name of the table
D. SALARY BETWEEN 30000 and 50000 data type of column
26. database design involves modeling the collected information at a high-level of abstract with out
using a particular data model or DBMS
C. it can be updated
28. which of the following is not true about first normal form(1NF)
C.count function does not return a NULL if no rows satisfy the where clause
29.design a database is an iterative process that involves develop and refining a database structure
based on the information and processing requirements of your business. Which one is the correct
phase of the design process.
A. data analysisphysical database designlogical database designphysical implemention
30. there are steps in gathering data to identify business requirement excepts
31. using database manegment system is preferable than file system when
32. you created a table called department that stores a company department detail. The table contains
department id datatype int and department name datatype varchar(50). The primary key of this table
foreign key for other table. You selected department id primary key of the table. The reason to do this
is.
A. it identify uniquely B. it is easy to remember C. it is sequential D.it needs leaser storage device
C. a foreign key should contain the same data type in both table
B. store record
C.hiding of complex queries
36. you have a bank database system to store account transaction data what do you do if you need to
get ordered transaction data from the most recent to the oldest transaction.
39. you are a database developer for an insurance company.every insurance policy is managed by one
and only one product manager. One producte manager can manage many policy. How can you
represent the information in the database?
A. include the manager id in the policy entity
D. include the manager in the policy entity and the policy id in the manager entity
C.the datadictionary contains the name and description of each data element
D.data element in the database can be modified by changing the data dictionary
C. create the table and add all the data from docments
43. 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 come back, what do you have
to do to your server to recover the transaction that have been committed but not checkpointed?
A. you need backup the transaction log, restore the database from the last full database backup, and
then restore all the transaction log.
B. nothing sql server will recovery automatically, rolling back pending transaction and rolling
forward committed ones.
C. Nothing, all transaction since the last checkpoint are lost the effect of the other are in a database
D. Run roll forward all transaction
44. Whiling gathering data to determine the organization business requirement you might take recorde
of organization like annual report and organizational polices. These kind of information resources are
considered as
A. description of what the table means and how its functionally used
D. descrptions of clients
48. you created a foreign key constraint and need to update the value referencing column, if the value
in the references column are updated which referential column are updated which referential integrity
command should be used.
A. On update restricte
B. on update no action
C. On update CASCADE
49. you are assigned to lead a small team in your company that manage database identify the wrong
statement in leading the team.
A. assign responsibility to team member
50. you have just implemented a soulation for a database crash in your company and you want to
celebrate the succeses. The next step you should do before starting your celebration.
vechile
A. 2 NF C. 1NF
B. 3NF D. boyce code
52. In the above given table, how to remove a filed name engine_size?
53. With sql, how do you select all the records from a table named student the column “firstname”
start with an “B”?
55.when the value in one or more attribute being used as a foreign key that must exist an other set of
one or more attribute in an other table, you have created?
n. entity
Q. planning
R. rectangle
Column A column B
S. functional dependence
T. query
1. A questionnaire is a research instrument consisting of a series of questions and other
prompts for the purpose of gathering information from respondents.
2. In E-R Diagram, an entity is represented by a rectangle.
3. A data dictionary is a collection of descriptions of the data objects or items in a data
model for the benefit of programmers and others who need to refer to them.
4. In E-R Diagram, an attribute can be represented by an ellipse (oval) shape with a line
connected it to the associated entity.
5. Age attribute is derived attribute, and the Birth-Date attribute is stored attributed
6. Primary Key is a candidate key which doesn’t have repeated values nor does it comes with a
NULL value in the table.
7. Database Security means protection of the: - data from malicious attempts to steal
(view) or modify data.
8. An index is a set of one or more keys which is used to speed up access to data in a table.
It is a separate physical data structure that enables queries to access one or more data
rows fast.
9. Database backup is the process of dumping data (from a database, a transaction log, or
a file) into backup devices that system creates and maintains.
10. Using Differential Backups the differential backup stores only the data changes that
have occurred since the last full database backup
11. Shadow paging is a technique for providing atomicity and durability in database system.
12. A flowchart is a type of diagram that represents an algorithm or process, showing the
steps as boxes of various kinds, and their order by connecting those with arrows.
13. Diamonds, which show decisions that must be made
14. Data modeling is the formalization and documentation of existing processes and events
that occur during application software design and development.
15. The Entity is a person, object, place or event for which data is collected.
16. The cardinality defines the relationship between the entities in terms of numbers. The
three main cardinal relationships are: one-to-one, expressed as 1:1; one-to-many,
expressed as 1:M; and many-to-many, expressed as M:N.
17. The HIPO (Hierarchy plus Input-Process-Output) acts as a hierarchical chart for the
function performed by the system.
18. RAD (Rapid Application Development) is a more advanced program design tool (a
programming system) that enables programmers to quickly build working programs.
19. CASE tool (Computer Aided Software Engineering tool) is software that can be used to
mean any computer-based tool for software planning, development, and evolution.
20. Prototyping is the process of quickly putting together a working model (a prototype) in
order to test various aspects of a design, illustrate ideas or features and gather early user
feedback.
21. Generalization is the process of extracting shared characteristics from two or more
classes, and combining them into a generalized superclass.
22. Entity Instance is a single occurrence of a particular entity type. An entity type is
described just one time.
23. Foreign Key is a table’s primary key attribute which is repeated in another related table
(having related data) to maintain the required data relationship.
24. The degree of a relationship type is the number of participating entity types. Meaning if
the relationship is between two entity types (for Example, Employee and Department),
then the relationship is binary, or has a degree of two.
25. The UML (Unified Modeling Language) is a general-purpose visual modeling language
that is used to specify, visualize, construct, and document the object of a software system.
It captures decisions and understanding about systems that must be constructed.
26. Association - An association represents a relationship between two classes:
27. Multiplicity - A multiplicity allows for statements about the number of objects that are
involved in an association:
28. Database auditing involves observing a database so as to be aware of the actions of
database users. Database administrators and consultants often set up auditing for security
purposes, for example, to ensure that those without the permission to access information
do not access it
29. Boyce–Codd normal form (BCNF)
30. Normalization is a process that involves dividing large tables (complex data structures)
into smaller (simple and stable data structures) that do not accept redundant values and
defining relationships between them.
31. A table is in 1NF if: - There are no duplicated rows in the table
32. 2nf All non-key attributes are dependent on the entire key (has no partial dependencies).
33. 3nf no transitive dependencies
34. Altitude :- Postive or Negitive opnion of Human Views
35. Leader Ship :- Postive Influence on the employees or workers.
Good Luck!!!!
T. query