Download as pdf or txt
Download as pdf or txt
You are on page 1of 16

A

(Mini Project Report)


ON
Quiz Website.
Submitted in partial fulfillment of the requirements of the
University of Mumbai for the Degree of Bachelor of Engineering.

(Computer Engineering)
BY
AMAAN PATEL.
KHAN SHAHNAWAZ.
HUZAIFA SHAIKH .
ALTAF SHAIKH.

Under the guidance of


Prof. AKSHATA MAM

Department of Computer Engineering

Suman Educational Trust’s


Dilkap Research Institute of Engineering & Management
Studies Mamdapur,Post:Neral, Taluka:Karjat,
Dist:Raigad-410101
University of Mumbai
Academic Year 2022-23

Dilkap Research Institute of Engineering & Management Studies

Department of Computer Engineering


Academic Year 2022-23

CERTIFICATE

This is to certify that

Mr. Amaan Patel, Shahnawaz khan, Shaikh Altaf , Huzaifa Shaikh

5th Semester of Computer Engineering DILKAP RESEARCH INSTITUE OF ENGINEERING


& MANAGEMENT STUDIES OF INSTITUTE has completed the Mini Project satisfactorily
For the academic year 2022-2023 as prescribed in the curriculum.

SUBJECT:
Exam seat no:
Date:

Guide HOD

(Prof. AKSHATA MAM) (Prof. Indira Joshi)

Examinor:
Acknowledgement

We extend our sincere and hearfelt thanks to our esteemed


Guide.Prof. AKSHATA MAM. Their exemplary guidance, monitoring and
Consist encouragement throughtout the course at crucial juncture and For
showing us the right way.

Amaan patel
khan Shahnawaz
Huzaifa Shaikh
Altaf Shaikh

iii
INDEX

SR.NO. CONTENT PAGENO.


1
Introduction
2
Objective
3
Advantage
4
Implementation

5 Result

6 Conclusion

7 Refrences

iv
INTRODUCTION

Introduction to Project:

The 'MCQ Quiz Application' project will be developed to overcome the time consuming problem of
manual system. Apart from that in current system, checking the answer sheets after taking test, waste
the examiners time, so this application will check the correct answer and save the examiner time and
carry the examination in an effective manner. The users which are use this system don't need to high
computing knowledge and also system will inform them while entering invalid data.

The aim of this project is to computerized the existing manual system and help the examiners to save
their valuable time and important data. Apart from this, data which are exist in this system, will exist
for long period of time and will be easy accessible. This project helps the examiners to manage their
services in a good way and provide a better service to their users.

v
OBJECTIVE.
Objective of Online Quiz System:
The objective and scope of my Project Online Quiz System is to record the details various
activities ofuser. It will simplifies the task and reduse the paper work. urin!
implementation every user will be !ivenappropriate trainin! to suit their specific needs.
Specific support will also be provided at key points withinthe academic calendar. Trainin!
will be provided on a timely basis" and you will be trained as the new isOnline Quiz System
rolled out to your area of responsibility. #t the moment we are in the very early sta!es" so it
is difficult to put a specific time on the trainin!" but wewill keep people informed as plans
are developed.The system is very user friendly and it is anticipatedthat functions of the
system will be easily accessed by administrators" academics" students andapplicants.$ence
the mana!ement system for the %olle!e mana!ement has been desi!ned to remove all
thedeficiency from which the present system is sufferin! and to ensure.
Abstract of Online Quiz System

The client uses &S '(cel" and maintains their records" however it is not possible them to
share the datafrom multiple system in multi user environment" there is lot of duplicate
work" and chance of mistake.)hen the records are chan!ed they need to update each and
every e(cel file. There is no option to findand print previous saved records. There is no
security* any body can access any report and sensitivedata" also no reports to summary
report. This Online Quiz System is used to overcome the entire problemwhich they are
facin! currently" and makin! complete atomization of manual system to
computerizedsystem.
The main limitation of the previous system of Online Quiz System:

vi
ADVANTAGE.
Advantages:
Engage your audience
Engage your audience in a unique and fun way and connect them to your brand or learning
material. By creating a returning event, you will improve your consumer loyalty.

Large number
Taking online quizzes makes it possible to have a large number of participants. It could be up
to a number of 1000 participants (and even more!). It doesn’t matter at what kind of location
they take the online quiz as long as they are connected to the Internet.

Randomizing questions
It is significant more easy to randomize your question with just one click than to do it all
manually. Randomizing questions and even answers of those questions is not a lot a of work
to do with online quizzes. Besides the advantage of time saving, it also helps preventing
students from cheating.

Quiz results/ gain insight in audience


Another plus of online quizzes is getting immediate results from your participants. Not only
does the creator get the results, the participant itself is also possible to get his or her results.
This makes it for the creator easy to identify the gaps in knowledge. The participants are able
to view on what kind of section they have to improve themselves.

2
Implementation.

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Quizz App</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/5.15.4/css/all.min.css"
integrity="sha512-
1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa
6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>

<body>
<!-- start quiz button -->
<div class="start_btn"><button>Start Quiz</button></div>

<!-- Info Box -->


<div class="info_box">
<div class="info-title"><span>Some Rules Of This Quiz</span></div>
<div class="info-list">
<div class="info">1.You will have only <span>15 seconds</span> per each question

</div>
<div class="info">2.Once you select your answer,it can't be undone.

</div>
<div class="info">3.You can't select any option once time goes off. </div>
<div class="info">4.You can't exit from the quiz while you,re playing. </div>

3
<div class="info">5.You will get points on the basis of your correct answer. </div>
</div>
<div class="buttons">
<button class="quit">Exit Quiz</button>
<button class="restart">Continue</button>
</div>
</div>

<!-- Quiz Box -->


<div class="quiz_box">
<header>
<div class="title">Awesome Quiz Application</div>
<div class="timer">
<div class="time_left_text">Time Left</div>
<div class="timer_sec">15</div>
</div>
<div class="time_line"></div>
</header>

<section>
<div class="que_text">

</div>

<div class="option_list">

</div>
</section>

<footer>
<div class="total_que">
<!-- <span><p>1</p> of <p>5</p>Questions</span> -->
</div>
<button class="next_btn show">Next Que</button>
</footer>
</div>

<!-- Result Box -->


4
<div class="result_box">
<div class="icon">
<i class="fas fa-crown"> </i>
</div>
<div class="completed_text">You'have completed the quiz</div>
<div class="score_text">
<!-- <span>and nice , You got 2 out of 5</span> -->

</div>
<div class="buttons">
<button class="restart">Replay Quiz</button>
<button class="quit">Quit Quiz</button>
</div>
</div>

<canvas id="my-canvas"></canvas>

<!-- script file js -->

<!-- this was a particle file -->


<script src="js/index.min.js"></script>

<!-- this is question file -->


<script src="js/questions.js"></script>

<!-- main -->


<script src="js/scripts.js"></script>

</body>

</html>

5
OUTPUT.

6
7
8
Conclusion.

A large number of participants, with instant results of your online quiz


(for the creator as well as the participants), a better overview, you’re
able to randomize your questions and set a timer. That all without the
need of an instructor. What’s holding you back to not use online
quizzes?

REFERENCE

https://www.tutorialpoint.comhttps://www.javatpoint.c om/features-of-
javahttps://www.tutorialspoint.com/java/java_overview.
htmlhttps://www.guru99.com/java-platform.html

You might also like