Quiz Management System Project In Java With Source Code

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.
    button

  • Step 2: Extract file.

    Second, after you finished download the source code, extract the zip file.
    Quiz management system zip file

  • Step 3: Open Netbeans.

    Third, open “Netbeans IDE”.
    Quiz management system open netbeans

  • Step 4: Click open project.

    Fourth, click open project and choose your download source code.
    Quiz management system open project

  • Step 5: Run the project.

    Fifth, right click the project folder and click run.
    Quiz management system run project

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

Admin login
Admin login

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

Teacher login
Teacher login

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

Student login
Student login

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
Quiz Management System In Java– Project Information

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.

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.

9 thoughts on “Quiz Management System Project In Java With Source Code”

Leave a Comment