CS8481 - Set2
CS8481 - Set2
Aim & Procedure Queries & Output & Viva-Voce Record Total
Program Result
20 30 30 10 10 100
4. Create the student database with the following tables and do the following:
assessment(reg_no,name, mark1, mark2, mark3, total)
Page 2 of 5
10. Consider the following database of student enrollment in courses and books
adopted for that course.
STUDENT(regno, name, major, bdate)
COURSE(courseno, cname, dept)
ENROLL(regno, courseno, sem, marks)
i. Display the total number of students register for more than two courses in a
department specified.
ii. Display the students who have secured the highest mark in each course
iii. List the youngest student of each course in all departments.
iv. Develop PL/SQL Cursor that selects marks of a particular student in a
specified semester.
12. Create the student database with the following tables and do the following:
mark_details(reg_no,name, mark1, mark2, mark3, total)
dept_details (dept_no, dept_name, HOD)
stud_details(reg_no,name, dob, address)
i. Using alter command to assign foreign key in mark_details.
ii. Display the address of the students who have secured the top three ranks.
iii. Write a PL/SQL procedure to update the grade according to the marks
secured.
13. Create a database for IoT simulator with the following tables.
Device_details (deviceID, devicename, properties)
Connect_status(deviceID, loginTime, logoutTime)
Transaction_details(transID, deviceID, updatedProperties, timeofUpdation)
i. List the details of the devices that are connected in a particular session
ii. Display the details of the device and its property that has been active for
most of the time.
iii. Develop a PL/SQL procedure that deletes the details of the devices that
have been least updated.
ii. Display the student who has been placed with highest salary
iii. Develop a PL/SQL exception that provides an alternate for not eligible
students.
16. Create a database for Timetable generation using the following tables:
Faculty_details(FacultyID,FacultyName, dept)
Subject_details(Subcode, subtitle, dept, year)
Subject_allocated(Subcode, year, dept,FacultyID)
Timetable(period, timefrom, timeto, Subcode,year,dept)
i. Display the timetable of individual faculty
ii. Display the timetable of each class separately
iii. Display the timetable of particular subject
iv. Develop a PL/SQL procedure that displays individual class timetable
18. Create a database for listing the academic performance of affliated colleges under
Anna Univeristy. Identify the tables needed. Apply normalization on identified
tables. Develop an application with suitable UI design and finally generate the
academic performance.
19. Develop an application with front end design for Railway Ticket Reservation
system using approriate database system.
20. Develop an application for students attendance tracking and reporting system with
good UI design and database connectivity.