You are on page 1of 24

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

NAVJEEVAN EDUCATION SOCIETY POLYTECHNIC

MICRO PROJECT
Academic year: 2022-23

TITLE OF PROJECT

BLOOD DONATION SYSTEM

Program: Information Technology

Course: Principal Of Database Course code: 22319

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION


Certificate

This is to certify that Mr. Pranay Bate, Shubham Shapane, Vighnesh kolambekar

Roll No. 449, 450, 451 of 3rd Semester of Diploma in Information Technology Of Institute,
NAVJEEVAN POLYTECHNIC (Code: 0144) has completed the Micro Project satisfactorily in
Subject – Principal Of Database (22319) for the academic year 2022- 2023. as prescribed in the
curriculum.

Place:Bhandup, Mumbai Enrollment No:- 2201440217

2201440218

2201440219

Exam Seat No: 117676

117677

117678

Subject Teacher Head of the Department Principal

College Seal

Group Details:

Sr.No Name of Group members Roll No Enrollment No Seat No


1 Pranay Bate 449 2201440217 117676
2 Shubham Shapane 450 2201440218 117677
3 Vighnesh Kolambekar 451 2201440219 117678

Name of Project Guide: Mrs Meena Talele

PART A - Plan
Format for Micro-Project Proposal

Title of Micro-Project

BLOOD DONATION SYSTEM


1.0 Brief Introduction
This is a semester wise microproject for the subject Principal Of
Database. The title of this project is ‘Blood Donation System’ and it is performed
by the students of Group no.11-Pranay Bate, Shubham shapane, Vighnesh
Kolambekar. This project is given to let know of the skills that were taught of
DBMS to the students. This project is made with the help of SQL commands and
queries.

2.0 Aim of the Micro-Project


This Micro-Project aims at: -
1. SQL Queries and commands understanding.
2. Team work and group handling.
3. Leadership qualities.
4. Time management qualities.
5. Analyzing the microproject.
6. Investigating and getting for information around the same.
7. Finding the right solution and getting the lessons learnt.

3.0 Action Plan (Sequence and time required for major activities for 8 Weeks)

S. No. Details of activity Planned Start Planned Name of Responsible


date Finish date Team Members

1 Finalization of project Title and 09/12/22 10/12/22 All three


Scope members

2 Project Definition and design 10/12/22 12/12/22 Pranay Bate


structure

Vighnesh
3 Draw ER Model 13/12/22 15/12/22 Kolambekar
4 Coding 14/12/18 16/12/22 Pranay Bate

Pranay Bate
5 Coding 16/12/22 18/12/22

6 Coding 18/12/22 20/12/22 Shubham


Shapane
Vighnesh
Kolambekar

7 Report Writing 20/12/22 22/12/22 Pranay Bate

8 Demonstration of project and final 22/12/22 24/12/22 All three


submission members

4.0 Resources Required

S. No. Name of Specifications Qty Remarks


Resource/material

1 Hardware Computer (AMD Ryzen 3 1 AMD Ryzen 3


computer system 3200Upreferable),RAM minimum 3200U Processor
4
GB and onwards but not limited
to
2 Operating system 1 Windows 11
Windows 11

3 software Turbo c version 3 or later with 1 Turbo C


DOSBOX

PART B (Outcomes after Execution and) Format


for Micro-Project Report
Title of Micro-Project
BLOOD DONATION SYSTEM
1.0 Brief Description
The title of the project is ‘Blood Donation System’ and the project contains four
tables named Donar-Containing all the information of the donar who donate
blood , Hospital-Containing all the information about the hospital, Blood-
Containing all the information of donted blood, Patient- Containing all the
information about the patient. Each table containing more than 10 rows of
information. The ER-Model of how the Blood Donation System is provided in the
further pages.

2.0 Aim of Micro Project


These micro-projects are given to the students to make sure that all
of them have understood the basic concepts of the included subjects. Here-
Principal Of Database is taken into consideration. These projects are for the
students to help analyze the given microproject, Investigate the project and
collect information of the same, build learning and group/problem handling
qualities, Finding the right solution to the problems and getting the lessons
learnt. These help students learn the abilities to control a situation and handle it
properly with careful steps and helps to build the time managing qualities as
well.

3.0 Course Outcomes Integrated


(Add to the earlier list if more COs are addressed)
a) Create and manage database using SQL commands and queries.
b) Write PL/SQL code for given database.

4.0 Actual Procedure Followed.


Group members: -
1. 449-Pranay Bate
2. 450-Shubham Shapane
3. 451-Vighnesh Kolambekar
All three group members first decided together on which topic the microproject was
going to be. After the selection of the microproject the information was collected
about the topic. As the information had been collected, the micro-project had been
started. The members in the group participated equally into the micro-project and
provided equal amount of help. The queries and commands were executed and
checked by the respective teacher.

ER diagram: -

DNAME
DADD HNAME
ADDRES
DID S
BLOOD
ID DONER HOSPITAL
DONAT
TTTED

CONTA
DAGE
CONTA CT
CT CONTA
ORDER
S

PPATIE PATIEN BLOODID BLOOD


NT ID T GROUP
NAME
BLOOD
BLOOD
PATIENT BLOOD

COST
CONTA ADDRE
CT SS

Code: -
CREATE TABLE:-

DONAR TABLE:-
SQL> create table donar
2 (donar_id:int(11),
3 donar_name:varchar(30),
4 blood_id:int(11),
5 address:varchar(100),
6 contact:int(10),
7 age:int(3));
Table created.

SQL> desc donar;


Name Null? Type
----------------------------------------- -------- --------------------
DONAR_ID INT(11)
DONAR_NAME VARCHAR(30)
BLOOD_ID INT(11)
ADDRESS VARCHAR(100)
CONTACT INT(10)
AGE INT(3)

BLOOD TABLE:-

SQL>create table blood


2 ( blood_id:int(11),
3 blood_group_name:varchar(5),
4 blood_cost:int(11);
Table created.

SQL> desc blood;


Name Null? Type
----------------------------------------- -------- --------------------
BLOOD GROUP ID INT(11)
BLOOD GROUP NAME VARCHAR(5)
BLOOD COST INT(11)
HOSPITAL TABLE:-

SQL>create table hospital


2.Hospital_name:varchar(20),
3.Hospital_address:(50),
4.Contact_no:int(11);
Table created.10

SQL> desc hospital;


Name Null? Type
----------------------------------------- -------- --------------------
HOSPITAL NAME VARCHAR(20)
HOSPITAL ADDRESS VARCHAR(50)
CONTACT NO INT(11)

PATIENT TABLE:-

SQL>create table patient


2.Patient_name:varchar(20),
3.Patient_id:int(10),
4.Address:int(100),
5.Contact_no:int(11);
6.Age:int(3)
Table created.
SQL>alter table patient add(age:int(3);
Table altered.

SQL> desc patient;


Name Null? Type
----------------------------------------- -------- --------------------
PATIENT NAME VARCHAR(20)
PATIENT ID INT(10)
ADDRESS VARCHAR(100)
CONTACT NO INT(11)
AGE INT(3)

INSERTION: -

DONAR TABLE: -

1 row created.

SQL> /
Enter value for donar_id:- 44
Enter value for donar_name:- Shubham
Enter value for blood_id:- B-
Enter value for address:- Chembur
Enter value for contact:- 8888777712
Enter value for age:- 21
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(44,’Shubham’,’B-’,’Chembur’,’8888777712’,21)

1 row created.

SQL> /
Enter value for donar_id:- 78
Enter value for donar_name:- Jay
Enter value for blood_id:-A+
Enter value for address:-Kandivali
Enter value for contact:-9999666321
Enter value for age:- 38
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(78,’Jay’,’A+’,’Kandivali’,’9999666321’,38)

1 row created.

SQL> /
Enter value for donar_id:- 91
Enter value for donar_name:- Ravina
Enter value for blood_id:- A-
Enter value for address:- Goregaon
Enter value for contact:-6665553321
Enter value for age:- 27
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(91,’Ravina’,’A-’,’Goregaon’,’6665553321’,27)

1 row created.

SQL> /
Enter value for donar_id:- 34
Enter value for donar_name:- Raj
Enter value for blood_id:- B+
Enter value for address:- Goregaon
Enter value for contact:- 0989090880
Enter value for age:- 20
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(34,’Raj’,’B+’,’Goregaon’,’0989090880’,20)

1 row created.

SQL> /
Enter value for donar_id:- 45
Enter value for donar_name:- Mahesh
Enter value for blood_id:- O+
Enter value for address:- Andheri
Enter value for contact:- 0007865221
Enter value for age:- 22
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(45,’Mahesh’,’O+’,’Andheri’,’0007865221’,22)

1 row created.

SQL> /
Enter value for donar_id:- 65
Enter value for donar_name:- Pradeep
Enter value for blood_id:- O+
Enter value for address:- Jogeshwari
Enter value for contact:- 8877665545
Enter value for age:- 28
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(65,’Pradeep’,’O+’,’Jogeshwari’,’8877665545’,28)

1 row created.
SQL> /
Enter value for donar_id:- 67
Enter value for donar_name:- Rajesh
Enter value for blood_id:- O+
Enter value for address:- Malad
Enter value for contact:- 1110006544
Enter value for age:- 25
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(67,’Rajesh’,’O+’,’Malad’,’1110006544’,25)

1 row created.

SQL> /
Enter value for donar_id:-305
Enter value for donar_name:- Vivek
Enter value for blood_id:- A+
Enter value for address:- Dahisar
Enter value for contact:- 8765453321
Enter value for age:- 31
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(305,’Rajesh’,’A+’,’Dahisar’,’8765453321’,31)

1 row created.

SQL> /
Enter value for donar_id:- 69
Enter value for donar_name:- Sahil
Enter value for blood_id:- O+
Enter value for address:- Goregaon
Enter value for contact:-9877755500
Enter value for age:- 29
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(69,’Sahil’,’O+’,’Goregaon’,’9877755500’,29)

1 row created.

SQL> /
Enter value for donar_id:- 73
Enter value for donar_name:- Sharda
Enter value for blood_id:- A+
Enter value for address:- Bhandup
Enter value for contact:- 8977755511
Enter value for age:- 19
Old 1:insert into donar values(&donar_id,’&donar_name,’&blood_id’,’&address’,’&contact’,&’age’)
New 1:insert into donar values(73,’Sharda’,’A+’,’Bhandup’,’8977755511’,19)

1 row created.

BLOOD TABLE: -

SQL>
Enter value for blood_id: 234
Enter value for blood_group: B-
Enter value for blood_cost: 17000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(234,'B-','17000',) 1 row created.

SQL>
Enter value for blood_id: 109
Enter value for blood_group: A+
Enter value for blood_cost: 10000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(109,'A+','10000',) 1 row created.

SQL>
Enter value for blood_id: 100
Enter value for blood_group: A-
Enter value for blood_cost: 20000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(100,'A-','20000',) 1 row created.

SQL>
Enter value for blood_id: 102
Enter value for blood_group: B+
Enter value for blood_cost: 10000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(102,'B+','10000',) 1 row created.

SQL>
Enter value for blood_id: 92
Enter value for blood_group: O+
Enter value for blood_cost: 8000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(92,'O+','8000',) 1 row created.

SQL>
Enter value for blood_id: 921
Enter value for blood_group: O+
Enter value for blood_cost: 8000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(921,'O+','8000',) 1 row created.

SQL>
Enter value for blood_id: 233
Enter value for blood_group: O+
Enter value for blood_cost: 8000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(233,'O+','8000',) 1 row created.

SQL>
Enter value for blood_id: 453
Enter value for blood_group: A+
Enter value for blood_cost: 10000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(453,'A+','10000',) 1 row created.

SQL>
Enter value for blood_id: 43
Enter value for blood_group: O+
Enter value for blood_cost: 8000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(43,'O+','8000',) 1 row created.

SQL>
Enter value for blood_id: 145
Enter value for blood_group: A+
Enter value for blood_cost: 10000
old 1: insert into blood values(&blood_id,'&blood_group','&blood_cost',')
new 1: insert into blood values(145,'A+','10000',) 1 row created.

HOSPITAL TABLE: -

SQL>

Enter hospital_name: Sanjevani


Enter value for hospital_add: Bandup
Enter value for contact_no: 9090303040
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,bhandup,',9090303040,)

1 row created

SQL>

Enter hospital_name: Ganga


Enter value for hospital_add: Bandup
Enter value for contact_no: 9090303041
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,bhandup,',9090303040,)

1 row created.
. SQL>
Enter hospital_name: SRV
Enter value for hospital_add: Goregaon
Enter value for contact_no: 02268840000
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,Goregaon,’,02268840000,)

1 row created.
SQL>

Enter hospital_name: Sai Kripa


Enter value for hospital_add: Kandivali
Enter value for contact_no: 2228780778
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,kandivali,',2228780778,)

1 row created.
SQL>

Enter hospital_name: Lifeline Multispeciality


Enter value for hospital_add: Malad
Enter value for contact_no: 8048126387
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,malad,',8048126387,)

1 row created.
SQL>

Enter hospital_name: Apex


Enter value for hospital_add: Boravali
Enter value for contact_no: 9136665105
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,boravali,',9136665105,)

1 row created.
SQL>
Enter hospital_name: Saraswati
Enter value for hospital_add: Virar
Enter value for contact_no: 2228689342
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,virar,',2228689342,)

1 row created.
SQL>

Enter hospital_name: Siddhivinayak


Enter value for hospital_add: Thane
Enter value for contact_no: 2225883531
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,thane,',2225883531,)

1 row created.
SQL>

Enter hospital_name: Sarla


Enter value for hospital_add: Santacruz
Enter value for contact_no: 2261178811
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,santacruz,',2261178811,)

1 row created.
SQL>

Enter hospital_name: Thakur


Enter value for hospital_add: Dadar
Enter value for contact_no: 2224463517
old 1 ; insert into customs values(&hospital_name,&hospital_add,'&contact_no);
new 1: insert into customs values(sanjevani_hosital,dadar,',2224463517,)

1 row created.

PATIENT TABLE: -
SQL>
Enter value for patient_name: Ajay
Enter value for patient_id: 089
Enter value for address: Goregaon
Enter value for contact:8877663421
Enter value for age: 27
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(ajay,089,goregaon,8877663421,27,')

1 row created.

SQL>
Enter value for patient_name: Vinayak
Enter value for patient_id: 097
Enter value for address: Dadar
Enter value for contact:8877663426
Enter value for age: 35
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(vinayak,097,dadar,8877663426,35,')

1 row created.

SQL>
Enter value for patient_name:Apurva
Enter value for patient_id: 099
Enter value for address: Kandiwali
Enter value for contact:8877660000
Enter value for age: 26
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(apurva,099,kandiwali,8877660000,26,')

1 row created.

SQL>
Enter value for patient_name: Shruti
Enter value for patient_id: 102
Enter value for address: Dahisar
Enter value for contact:8886661111
Enter value for age: 20
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(shruti,102,dahisar,8886661111,20,')

1 row created.
SQL>
Enter value for patient_name: Prathamesh
Enter value for patient_id: 166
Enter value for address: Goregaon
Enter value for contact:9877775555
Enter value for age: 42
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(prathamesh,166,goregaon,9877775555,42,')

1 row created.

SQL>
Enter value for patient_id: 425
Enter value for address: Thane
Enter value for contact:8877668888
Enter value for age: 23
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(rohit,425,thane,8877668888,23,')

1 row created.

SQL>
Enter value for patient_name: Rupali
Enter value for patient_id: 307
Enter value for address: Palghar
Enter value for contact:8877662222
Enter value for age: 30
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(rupali,307,palghar,8877662222,30,')

1 row created.

SQL>
Enter value for patient_name: Snehal
Enter value for patient_id:275
Enter value for address: Thane
Enter value for contact:7866645111
Enter value for age: 26
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(snehal,275,thane,7866645111,26,')

1 row created.

SQL>
Enter value for patient_name: Praful
Enter value for patient_id: 333
Enter value for address: Bhandup
Enter value for contact:9876564432
Enter value for age: 19
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(praful,333,bhandup,9876564432,19,')

1 row created.

SQL>
Enter value for patient_name: Shweta
Enter value for patient_id: 155
Enter value for address: Pawai
Enter value for contact:7866654321
Enter value for age: 26
old 1: insert into apt_details values(&patient_name,&patient_id,&address,&age,');
new 1: insert into apt_details values(shweta,155,pawai,7866654321,26')

1 row created.

COMPLETED TABLES: -

DONAR TABLE: -

SQL> select * from donar;


DID DNAME BID DADDRESS DCONTACT DAGE
-------- ---------------- -------- -------------------- --------------------- -----------
44 Shubham B- Chembur 8888777712 21
. 78 Jay A+ Kandivali 9999666321 38
91 Ravina A- Goregaon 6665553321 27
34 Raj B+ Goregaon 0989090880 20
45 Mahesh O+ Andheri 0007865221 22
65 Pradeep O+ Jogeshwari 8877665545 28
67 Rajesh O+ Malad 1110006544 25
305 Vivek A+ Dahisar 8765453321 31
69 Sahil O+ Goregaon 9877755500 29
79 Sharda A+ Bhandup 8977755511 19

BLOOD TABLE: -

SQL> select * from Blood;

BID BGROUP BCOST


---------- --------------- ---------------
234 B- 17000
109 A+ 10000
100 A- 20000
102 B+ 10000
92 O+ 8000
921 O+ 8000
233 O+ 8000
453 A+ 10000
43 O+ 8000
145 A+ 10000

HOSPITAL TABLE: -

SQL> select * from Blood;

HNA,ME HADD HCONTACT


----------------- ---------------- ---------------------------
Sanjevani Bhandup 9090303040
Ganga Bhandup 9090303041
SRV Goregaon 0226884000
Sai Kripa Kandiwali 2228780778
Multispeciality Malad 8048126387
Apex Borivali 9136665105
Saraswati Virar 2228689342
Siddhivinayak Thane 2225883531
Sarla Santacruz 2261178811
Thakur Dadar 2224463517

PATIENT TABLE: -

SQL> select * from Patient;

PNAME PID PADDRESS PCONTACT PAGE


--------------- ----------- --------------------- --------------------- ------------
Ajay 089 Goregaon 8877663421 27
Vinayak 097 Dadar 8877663426 35
Apurva 099 Kandiwali 8877660000 26
Shruti 102 Dahisar 8886661111 20
Prathamesh 166 Goregaon 9877775555 42
Rohit 425 Thane 8877668888 23
Rupali 307 Palghar 8877662222 30
Snehal 275 Thane 7866645111 26
Praful 333 Bhandup 9876564432 19
Shweta 155 Pawai 7866654321 26

5.0 Actual Resources Used

S. No. Name of Specifications Qty Remarks


Resource/material

1 Hardware Computer (AMD Ryzen 3 1 AMD Ryzen


computer system 3200Upreferable),RAM 3 3200U
minimum 4 Processor
GB and onwards but not
limited to
2 Operating system 1 Windows 11
Windows 11

3 software Turbo c version 3 or later 1 Turbo C


with DOSBOX

7.0 Skill Developed / learning out of this Micro-Project

These micro-projects are given to the students to make sure that all of
them have understood the basic concepts of the included subjects. Here-
Database management system is taken into consideration. These projects are for
the students to help analyze the given microproject, Investigate the project and
collect information of the same, build learning and group/problem handling
qualities, Finding the right solution to the problems and getting the lessons
learnt. These help students learn the abilities to control a situation and handle it
properly with careful steps and helps to build the time managing qualities as well.
Suggested Rubric for Assessment of Micro-Project

ANEEXURE II Evaluation Sheet for the Micro Project


Academic Year: 2022-23 Name of the Faculty:Mrs.Meena Talele
Course: POD Course code: 22319 Semester:III
Title of the project: BLOOD DONATION SYSTE
addressed by Micro Project:

(Tick appropriate COs)

A: Design Normalized database on given data [ ]


B: Create and manage database using SQL comand [ ]
C: Write PL/SQL code for given database [ ]
D: Apply triggers on database also create procedure and function according the condition. [ ]
E: Apply security and confidentiality on given database [ ]
Major learning outcomes achieved by students by doing the project: -
(a) Practical outcome: Draw ER-Model on the given database. Use DDL and DML commands
for queries. Use Arithmetic Operators in queries. Use select command with ‘Where’
condition and order by clause. Use PL/SQL for insertion. Use union into select command.

(b) Unit outcomes in Cognitive domain: Draw ER-Model of the given database and identify
relationship between the entities.

(c) Outcomes in Affective domain: Design normalized database on given data. Create and
manage database using SQL commands. Write PL/SQL codes for given database.
Comments/suggestions about team work /leadership/inter-personal communication (if any)

………………………………………………………………………………………………………
Marks out of 6 Marks out of
for performance 4for
Roll No Student Name in group activity performance in Total out of 10
(D5 Col.8) oral/
presentation
(D5 Col.9)
449 PRANAY
450 SHUBHAM
451 VIGHNESH

(Signature of Faculty)

Micro-Project Evaluation Sheet

Process Assessment Product Assessment Total


Marks
Part A - Project Project PartB - Project individual
10
Proposal Methodology Report/Working Model Presentation/Viva
(2 marks) (2 marks) (2 marks) (4 marks)

Comments/Suggestions about team work/leadership/inter-personal communication (if any)


………………………………………………………………………………………………
……………………………………………………………………………………………..
……………………………………………………………………………………………..
……………………………………………………………………………………………..

Any Other Comment:


……………………………………………………………………………………………
……………………………………………………………………………………………
……………………………………………………………………………………………
………………………………………………………………………………………………

Name and designation of the Faculty Member: Mrs. Meena Talele

Signature……………………………

You might also like