Quiz Management System Project In Java With Source Code
The Quiz Management System Project In Java was developed in JAVA Programming using NetBeans IDE, this Java Project With Source Code interfaces has Registrations and logins form for teachers and students users.
A Quiz Management System In Java is to perform the examination for the student where an teacher can add questions, set password for quiz ,set timer for the exam and types of examination depends on the category.
As a user student can attend those exams. The student user can submit the test after finish the exam and get results through mail on there email id(it is implemented by mail services in java).
A teacher and admin user can get the history of his exam results. Admin also can check the complete activity of all the users and teacher users. Like exams and results.
This JAVA Project also includes a Java Project Free Download Source Code, just find the downloadable source code below and click to start downloading.
To start executing a Quiz Management System Project In Java With Source Code, makes sure that you have NeatBeans IDE or any platform of Java installed in your computer.
Time needed: 5 minutes
These are the steps on how to run the Quiz Management System Project In Java With Source Code
- Step 1: Download source code.
First, download the source code given below.
- Step 2: Extract file.
Second, after you finished download the source code, extract the zip file.
- Step 3: Open Netbeans.
Third, open “Netbeans IDE”.
- Step 4: Click open project.
Fourth, click open project and choose your download source code.
- Step 5: Run the project.
Fifth, right click the project folder and click run.
The code given below is for the admin log in
try {
Connection con;
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/quiz", "root","");
String str="select * from admin_info where user=? and pass=?";
PreparedStatement pstmt = con.prepareStatement(str);
String user=usernamet.getText();
String pass=passt.getText();
pstmt.setObject(1,user);
pstmt.setObject(2,pass);
ResultSet rs = pstmt.executeQuery();
if(rs.next())
{
JOptionPane.showMessageDialog(null,"Login Successfull");
this.dispose();
new Admin_home().setVisible(true);
}
else
{
JOptionPane.showMessageDialog(null,"Login Unsuccessfull");
usernamet.setText("");
passt.setText("");
}
con.close();
} catch (SQLException ex){}
In this module which is the admin login module of the system.
Admin login screenshot
The code given below is for the teacher log in
try {
Connection con;
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/quiz", "root","");
String str="select * from tech_info where user=? and pass=?";
PreparedStatement pstmt = con.prepareStatement(str);
String user=usernamet.getText();
String pass=passwordt.getText();
pstmt.setObject(1,user);
pstmt.setObject(2,pass);
ResultSet rs = pstmt.executeQuery();
if(rs.next())
{
JOptionPane.showMessageDialog(null,"Login Successfull");
this.dispose();
new teacher_homepage().setVisible(true);
}
else
{
JOptionPane.showMessageDialog(null,"Login Unsuccessfull");
usernamet.setText("");
passwordt.setText("");
}
con.close();
} catch (SQLException ex){}
In this module which is the teacher login page of the system.
Teacher login screenshot
The code given below is for the student log in
try {
String user=usernamet.getText();
String user1[];
user1 = new String[10];
String m1[];
m1 = new String[16];
int i=0;
Connection con;
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/quiz", "root","");
String str="select moblie from stud_info where username=?";
PreparedStatement pstmt = con.prepareStatement(str);
pstmt.setString(1,user);
ResultSet rs = pstmt.executeQuery();
while(rs.next())
{
m1[i]=rs.getString("moblie");
i++;
}
forgetpassword_page fr = new forgetpassword_page();
forgetpassword_page.main(m1);
con.close();
} catch (SQLException ex){}
dispose();
In this module which is the student login page of the system.
Student login screenshot
About The Quiz Management System In Java
Project Name: | Quiz Management System |
Language/s Used: | JAVA |
Database: | MySQL |
Type: | Desktop/Web Application |
Developer: | IT SOURCECODE |
Updates: | 0 |
Anyway, if you want to level up your programming knowledge, especially Java, try this new article I’ve made for you Best Java Projects With Source Code For Beginners Free Download.
Downloadable Source Code Below.
Summary
The Java Project With Source Code is built fully in Java and MySQL Database. It has full-featured Graphical User Interface (GUI) with all the functionalities
This article is the way to enhance and develop our skills and logic ideas which is important in practicing the Java programming language which is most well known and most usable programming language in many company.
This Simple Project also includes a downloadable source code for free.
Related articles
- Load data from MySQL database to Combo box Using Java
- How to use Scanner in Java Tutorial Using Netbeans IDE
- Update Data using MySQL Database and Java with Netbeans IDE
- Join Two String Value using MySQL CONCAT Function in Java
- How to convert text to speech in Java Tutorial using Netbeans IDE
- How to Load data from Mysql Database to Table Element Using Java
Inquiries
If you have any questions or suggestions about Quiz Management System Project In Java With Source Code, please feel free to leave a comment below.
It is requesting for a password
What is the password??
What is the password to extract zip code?
the password is : itsourcecode
what are the requirements for creating this project?
unable in logging in any of admin student teacher
please help its urgent
unable in logging in any of admin student teacher
please help its urgent
The admin password is in the database
how to see please elaborate