0% found this document useful (0 votes)
2 views

DBMS Assignment 1

The document outlines an assignment for the B.Sc program in Computer Science/Data Science/Cybersecurity for the 2024-25 session, focusing on the Introduction to Database Management Systems course. It includes five questions related to database models, architecture, entity-relationship diagrams, normalization, and SQL queries. The assignment is supervised by Dr. Preeti Rathi and involves 37 students.

Uploaded by

spandan1106
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

DBMS Assignment 1

The document outlines an assignment for the B.Sc program in Computer Science/Data Science/Cybersecurity for the 2024-25 session, focusing on the Introduction to Database Management Systems course. It includes five questions related to database models, architecture, entity-relationship diagrams, normalization, and SQL queries. The assignment is supervised by Dr. Preeti Rathi and involves 37 students.

Uploaded by

spandan1106
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

School of Engineering & Technology

Department: SOET Session: 2024-25


Program: B.Sc CS/DS/Cyber Semester: 4
Course Code: ENBS204 Number of students: 37
Course Name: Introduction to Faculty: Dr. Preeti Rathi
Database Management System

Assignment Number: 1
S. Questions CO’s
No.
1. Compare and contrast the relational data model with the entity-relationship CO1
model. Discuss the advantages and disadvantages of each model in the context of
designing and managing a database.
2. Describe the different layers in a database system architecture. Discuss the role CO1
of each layer, emphasizing how they contribute to the overall functionality and
efficiency of the database system.
3. Represent the following scenario using an entity-relationship diagram: "A CO2
university has multiple departments. Each department can have multiple
professors, and each professor can teach multiple courses. Each course has
multiple students enrolled."
4. Given an Entity-Relationship Diagram (ERD) representing a university database, CO1
normalize the data to 3rd normal form. Show each step of the normalization
process.
5. Given a database with three tables (Students, Courses, Enrollments), each CO2
containing 1000 records, calculate the total number of records in the result of
the following SQL query:

SELECT Students.Name, Courses.CourseName FROM Students JOIN Enrollments


ON Students.StudentID = Enrollments.StudentID JOIN Courses ON
Enrollments.CourseID = Courses.CourseID;

Faculty Signature: Approved by:

Date: Date:
Faculty Signature: Approved by:

Date: Date:

You might also like