Teacher Evaluation Sheet: Title of The Icro Project Course Outcomes Achieved
Teacher Evaluation Sheet: Title of The Icro Project Course Outcomes Achieved
Teacher Evaluation Sheet: Title of The Icro Project Course Outcomes Achieved
Sr.
Characteristic to be Poor Average Good Excellent
No.
assessed (Marks 1-3) (Marks 4-5) (Marks 6 - 8) (Marks 9-10)
(A) Process and Product Assesssment (Convert above total marks out of 6 marks)
1 Relevance to the Course
Literature Survey /
2
Information Collection
Completion of the Target as
3
per project proposal
Analysis of data and
4
representation
5 Quality of Prototype / Model
6 Report Preparation
(B) Individual Presentation / Viva (Convert above total marks out of 4 marks)
8 Presentation
9 Viva
Micro – Project Evaluation Sheet:
Process Assessment Product Assessment
Part Project Part Individual Total
A – project Methodology B – Project Presentation / Marks 10
Name of Student Proposal (2 marks) Report / Working Viva (4 marks)
(2 marks) Model(2 marks)
Comments / Suggestions about team work / leadership / inter – personal communication (if any)
Sr.
Characteristic to be Poor Average Good Excellent
No.
assessed (Marks 1-3) (Marks 4-5) (Marks 6 - 8) (Marks 9-10)
(A) Process and Product Assesssment (Convert above total marks out of 6 marks)
1 Relevance to the Course
Literature Survey /
2
Information Collection
Completion of the Target as
3
per project proposal
Analysis of data and
4
representation
5 Quality of Prototype / Model
6 Report Preparation
(B) Individual Presentation / Viva (Convert above total marks out of 4 marks)
8 Presentation
9 Viva
Micro – Project Evaluation Sheet:
Process Assessment Product Assessment
Part Project Part Individual Total
A – project Methodology B – Project Presentation / Marks 10
Name of Student Proposal (2 marks) Report / Working Viva (4 marks)
(2 marks) Model(2 marks)
Comments / Suggestions about team work / leadership / inter – personal communication (if any)
SHRI H. H. J. B POLYTECHNIC,
CHANDWAD-423101 (Nashik)
MICRO PROJECT
Academic year: 2023-24
TITLE OF PROJECT
Student record management system
CERTIFICATE
This is to certify 1) Rakecha Aryan Ajay
2) Shrishimal Manish Deepak
Place: CHANDWAD
Date: / /2024
Part B
The proposed methodology for a student record management system encompasses several key steps to
ensure efficiency, accuracy, and security. Firstly, a comprehensive analysis of the existing record-
keeping processes should be conducted to identify shortcomings and areas for improvement. This
analysis should involve consultation with stakeholders including administrators, teachers, and IT
professionals to understand their specific needs and requirements.
2. Preparation of Abstract
3. Collection of data
4. Preparation of concept
5. Seminar / Presentation
1.0 Brief Description: Student Record Management System deals with all the activities done by
computer such as registration and admission process. staff and class management etc all these
processes are handled by computer management system. The admission form designs and feed the
information that is required for admission and to maintain the college records. At the time of
registration, the administration should feel the information correctly if any wrong information field in
records. It will be edited by record list carefully.
• First, we will design the System Model and simple high-level diagram of each module will be
enough. There are many kind of the diagram to model a system especially when you are
using Object-Oriented design. These models are specified in Unified Modelling Language
(UML) which not scope of this post.
• The Administrator has to log in to the system with username and password provided during
registration process. No one is allowed to log in without a proper User ID and Password.
• Next, there is an option to maintain the Course Details, when you click a Specific button. We
will discuss that later.
Data Model:
• ER Model:
• Tables:
First steps after creating the data model are to make sure that you create an MS Access Database
called StudentDB.mdb. If you have MS Access 2007 or higher version, save your database with the
file extension (.mdb).
Create the following table with correct data types as shown in the following figures.
Labels:
Name: lblStudentManagement
Font-Size: 24 PX
Font-Weight: Bold
Buttons:
Name: btnLogin
Caption: Log in
Font: MS-Sans-Serif
Font-weight: Bold
Font-Size: 10px
End Sub
Components of frmLogin:
Labels:
Name: lblUserID
Name: lblPassword
Name: txtUserID
Name: txtPassword
Buttons:
Name: cmdOK
Caption: Log in
Name: cmdCancel
Caption: Cancel
Option Explicit
Dim rs As New ADODB.Recordset
LoginSucceeded = False
Me.Hide
End Sub
adOpenDynamic, adLockOptimistic
LoginSucceeded = True
Exit Sub
Me.Hide
ElseIf
.MoveNext
Else
"Login" txtPassword.SetFocus
SendKeys "{Home}+{End}"
Exit Sub
End If
Wend
.Close
End With
End Sub
Call loadcon
MsgBox ("connected")
End Sub
Components of frmCourse:
Labels:
Name: lblCID
Caption: Course ID
Name: lblCname
Name: lblDuration
Caption: Duration(Semester):
Text-Boxes:
Name: txtCID
Name: txtCname
Name: txtDuration
Text: 'leave blank' Buttons:
Name: cmdAdd
Name: cmdDel
Name: cmdDisplay
Name: cmdExit
Caption: &EXIT
Name: cmdFirst
Name: cmdLast
Name: cmdNext
Name: cmdPrev
"INSERT INTO
con.Close
End Sub
End Sub
adUseClient rsGrid.CursorLocation
adLockPessimistic
End Sub
txtCNAME.Text = rs!CourseName
txtDURATION.Text = rs!Duration
.MoveFirst
Wend
End With
End Sub
txtCNAME.Text = rs!CourseName
txtDURATION.Text = rs!Duration
.MoveLast
Wend
End With
End Sub
txtCNAME.Text = rs!CourseName
txtDURATION.Text = rs!Duration
.MoveNext
Wend
End With
End Sub
txtCNAME.Text = rs!CourseName
txtDURATION.Text = rs!Duration
.MovePrevious
Wend
End With
End Sub
Call loadcon
MsgBox ("Connected")
End Sub
Components of frmStudentDetails:
Labels:
Name: lblStudentID
Caption: STUDENT ID
Name: lblFirstName
Name: lblLastName
Name: lblCourseID
Caption: COURSE ID
Name: lblGrade
Name: txtStudentID
Name: txtFirstName
Name: txtLastName
Name: txtCourseID
Name: txtGrade
Name: cmdAdd
Caption: &ADD
Name: cmdDel
Caption: &DELETE
Name: cmdClear
Caption: &CLEAR
Name: cmdExit
Caption: &EXIT
Name: cmdDisplay
Caption: &DISPLAY
Name: cmdStudentCourses
Name: cmdNext
Name: cmdPrev
Name: cmdFirst
Name: cmdLast
Name: DataGrid1