0% found this document useful (0 votes)
10 views6 pages

Gtu Old Question

Uploaded by

gatbackontrack
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)
10 views6 pages

Gtu Old Question

Uploaded by

gatbackontrack
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/ 6

Sub : Database Managment Enroll No : 236420316053

Sub Code: 4331603 Name : Pratham Suthar

GTU OLD QUESTION


➢ CH 1 : INTRODUCTION TO DATABASE SYSTEM

1. Define the terms (a) Data (b) Information (c) Schema. (3M)
2. Explain advantages of DBMS over file system. (7M)
3. Differentiate DA and DBA. Describe roles and responsibilities of DBA(7M)*
4. Define the following terms: a)Data items b)Data dictionary c)Meta data (3M)
5. Explain disadvantages of File oriented system. (4M)
6. Describe the responsibilities of DBA in detail. (7M)
7. Compare File System vs Database System. (4M)
➢ CH 2 : DATABASE SYSTEM ARCHITECTURE

1. Define data abstraction? Explain Three level Architecture of DBMS. (7M)


2. What is Data Abstraction? Explain 3 Levels of Data Abstraction. (4M)
3. List out the type of Database Architecture Explain any two with example (7M)
4. Draw and Explain Network Data Model. (7M)
5. What is Schema? Explain Different Types of Schema With Example. (7M)
➢ CH 3 : ENTITY RELATIONSHIP MODEL

1. Explain entity and attributes with example. (3M)


2. Draw E R Diagram of Hospital Management System and Convert into
Relational Models. (7M)*
3. Explain different types of mapping cardinalities. (3M)*
4. Explain Composite attribute and Multivalued attribute. (4M)
5. Define the Following Terms :a).Relationship set b).Participation c).Candidate
key. (3M)
6. Define E-R diagram? Explain different symbols used in E-R diagram with
example. (7M)
7. Define attribute? Explain different types of attributes with example. (7M)
8. Define the Following Terms :a).Entity b).Attributes c).Relationship. (3M)
9. Describe Weak Entity Sets With Examples. (4M)
10.Draw The ER Diagram For University Management System. (7M)
11.Explain Degree of Relationshipset with diagram. (3M)
➢ CH 4 : ENHANCED ENTITY RELATIONSHIP MODEL

1. Describe Generalization. (4M)**


2. Explain Aggregation and Specialization in ER Diagram. (4M)
3. Explain Specialization with example. (4M)*

➢ CH 5 : RELATIONAL ALGEBRA

1. Explain with example Primary Key and Candidate Key. (4M)


2. Explain any three relational algebra operations. (7M)*
3. Explain Primary Key,

4. Candidate Key, and Foreign Key Constraints. (3M)

➢ CH 6 : NORMALIZATION

1. What is Normalization? Explain any two normal forms with example. (7M)
2. Explain need of Normalization? Discuss about 2NF with example.(7M)**
3. Explain 3nf Normal form with example. (7M)
4. Explain Partial Functional Dependency. (3M)**
5. Explain Full Functional Dependency. (3M)*
6. Justify The Importance of Normalization. Define 1 NF? Explain 1NF with
suitable example. (4/7M)*
7. (4M)

➢ CH 7 : TRANSACTION PROCESSING AND


CONCURRENCY CONTROL

1. List and discuss ACID properties of transaction With Example.(3/4/7M)*


2. What is locking? Explain Two phase locking and its types.(7M)
3. Draw and explain transaction state transition diagram. Explain dirty read
problem.(4M)
4. What is deadlock? Explain deadlock detection and Prevention.(7M)
5. Explain the properties of Transaction.(4M)
6. Explain Serializability of transactions with example.(7M)*
7. Write a short note on problems of concurrent execution of transaction.(4M)
8. Explain locking mechanism with example.(7M)*
9. Define Serializability? Explain rules of serializability?(3M)
10.Explain two phase locking protocol with suitable example.(7M)
11.List down problems of concurrency control. Explain any two with suitable
example.(7M)
12.Explain Deadlock in Transaction Management.(3M)

➢ CH 8 : SQL – THE BEGINNING

1. Explain the HAVING and ORDERBY clause in SQL with example.(4M)


2. Explain the GRANT and REVOKE statement in SQL.(4M)*
3. Explain the DML command in SQL.(3/4M)*
4. Explain Group By Clause in SQL.(3M)*
5. Explain DDL Commands.(4M)
6. Explain Having Clause in SQL.(3/4M)*

➢ CH 9 : SQL- OPERATOR AND FUNCTIONS

1. List any three Aggregate F unctions with example.(3M)


2. List any three Numeric functions with example.(3M)*
3. Explain following Character functions. 1) INSTR 2) LENGTH.(4M)
4. Explain following Aggregate functions. 1) MAX 2) SUM(4M)
5. Describe Different Date Function in SQL With Example.(3M)

➢ CH 10 : SQL – CONSTRAINTS

1. Explain the CHECK constraint with an example.(3M)


2. Explain Entity Integrity constraints.(3M)
3. Explain Referential integrity Constraints.(3M)
4. List out Constraints in SQL. Explain Any Two With Example.(4M)

➢ CH 11 : SQL – COMBINING MULTIPLE TABLES AND


VIEWS

1. Explain Views? Write a syntax to create a View.(4M)**


2. Explain equi join with example.(3/4M)***
3. Explain outer join with example.(4M)
4. Explain Different Types of Joins With Example in SQL.(7M)
5. Describe Set Operators in SQL With Example.(4M)

➢ CH 13 : PL/SQL – CURSORS AND EXCEPTIONS

1. Explain Cursor with example.(3M)


2. Explain Attributes of Implicit Cursors.(4M)

➢ CH 14 : PL/SQL – DATABASE OBJECTS

1. Define Triggers? Explain advantages of triggers.(4M)


➢ SQL – QUERY

1. Perform the following Query on the table Account having the field’s aname,
balance, phno in SQL. (7M)
1.1. ) Display all the records with aname is descending order.
1.2. ) Add one new column to store cityname.
1.3. ) Delete all Accounts having balance less than 3000.
1.4. ) Remove column phno from Account.
1.5. ) List all Accounts who do not stay in city ‘Jasdan’.
1.6. ) Find Account having maximum balance.
1.7. ) Find Average balance of all Account

2. Write SQL queries for the following tables:


T1 ( Empno, Ename , Salary, Designation)
T2 (Empno, Deptno.) (7M)

2.1. ) Display all the details of the employee whose salary is lesser than 10K.
2.2. ) Display the Deptno in which Employee Seeta is working.
2.3. ) Add a new column Deptname in table T2.
2.4. ) Change the designation of Geeta from ‘Manager’ to ‘Senior Manager’.
2.5. ) Find the total salary of all the employees.
2.6. ) Display Empno, Ename, Deptno and Deptname.
2.7. ) Drop the table T1.

3. Consider following relation EMP_PROJ relation.(7M)


(SSN,Pnumber,Hours,Ename,Pname,Plocation)
SSN is social security number of employee which is unique
Pnumber is project number which is unique
Hours is number of hours employee works on project
Ename is Employee name
Pname is project name
Plocation is project location.
1. Convert the above relation into 2NF.
2. List the functional dependencies.
4.

5.

6.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy