Quiz System
A desktop software developed using Tkinter package
What is Tkinter ?
Tkinter is Python's Graphical User Interface package. Which most commmonly used package for developing desktop applications using Python programming language.
Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, tkinter is the most commonly used method. It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with tkinter is the fastest and easiest way to create the GUI applications. Creating a GUI using tkinter is an easy task.
To create a tkinter app:
1. Importing the module – tkinter
2. Create the main window (container)
3. Add any number of widgets to the main window
4. Apply the event Trigger on the widgets.
There are two main methods used which the user needs to remember while creating the Python application with GUI.
1. Tk(screenName=None, baseName=None, className=’Tk’, useTk=1):
m=tkinter.Tk() where m is the name of the main window object
2. mainloop():
m.mainloop()
What is Quiz System ?
This is basic quiz system which designed for education purpose only just to undertand, how a basic software works.
A quiz refers to a short test of knowledge. it is a type of mind game or brain teasers in which a guy tries hard to respond to questions effectively about a certain or mixture of subjects. Quiz is mostly a form of multiple choice .
Why Is Quiz Important ?
Quiz help with concentration, identify gaps in knowledge, build confidence and help to retain information.