0% found this document useful (0 votes)
5 views2 pages

Dbms Ass II Questions

This document outlines an assignment for a DBMS course, detailing various questions related to database concepts, including guidelines for measuring good databases, normal forms, transaction definitions, ACID properties, and CRUD operations in MongoDB. It also includes practical SQL query tasks based on a college database schema. The submission deadline for the assignment is set for May 21, 2025.

Uploaded by

Gautam eeti
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)
5 views2 pages

Dbms Ass II Questions

This document outlines an assignment for a DBMS course, detailing various questions related to database concepts, including guidelines for measuring good databases, normal forms, transaction definitions, ACID properties, and CRUD operations in MongoDB. It also includes practical SQL query tasks based on a college database schema. The submission deadline for the assignment is set for May 21, 2025.

Uploaded by

Gautam eeti
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/ 2

ASSIGNMENT II QUSETIONS

SUBJECT NAME:DBMS SUBJECT CODE:22UCS413C

FACULTY INCHARGE:J.S.MULIMANI

SUBMISSION DATE:ON OR BEFORE 21-05-2025

1) List out the guidelines used to measure good database. Explain each with example.

2) Define normal form and explain 1NF,2NF 3NF and BCNF with example

3) Explain the following with examples

i)Exist and NotExist ii)IN and NOT IN iii)Aggregate functions iv)join

4)Define transaction.What are the problems that occurs when the transaction executes in
uncontrolled manner.

5)explain the different types of failure

6)Explain ACID properties with example

7)With a neat diagram explain the state transition diagram.

8)Define schedule. Explain serial and non serial schedule with example.

9)What are the motivation for NOSQL Systems also explain the different categories of NOSQL
system with applications

10) Explain CRUD opearation in MongoDB with example.

11) Consider following relations for COLLEGE DATABASE

STUDENT(USN,SName,Address,Phone,Gender)

SEMSEC (SSID, Sem, Sec)

CLASS(USN, SSID)

SUBJECT(Subcode,Title,Sem,Credits)

IAMARKS(USN, Subcode,SSID,Test1,Test2, Test3,FinalIA)

a) Identify Foreign Key for above relation


b) Write SQL queries for the followings:

1. Find the names and addresses of all students.

2. List the usn,name and address of students who are studying semester 5 and sectionA;.

3. Retrieve the titles of subjects offered in semester 3.

Retrieve the USN and FinalIA marks of students for the subject with Subcode

CS101;.

5. Find the USNs of students who have either scored above 80 in Test1 or above 80

in Test2.

6. Retrieve the names of students who are in both semester 2 and section A

7. List the subjects offered in semester 3 but not in semester 4.

8. List the subjects which have students with FinalIA marks above 90.

9. Retrieve the total number of students in each section of each semester.

10. Find the maximum, minimum, and average Test1 marks for the subject 'CS101'.

11. Get the total number of credits offered in semester 3.

12. List the sections that have more than 20 students.

13. Create a view which contains usn, subject code and 3 test marks and final IA

marks

You might also like