4. Quiz application
Coding and running a multiple-choice app via your command line shows that you can use what you have learned to build something pretty basic and usable.
Coding a multiple-choice quiz with Python not only exposes you to how a typical quiz app works, but you will also get used to some of the core concepts of Python programming.
The knowledge you will need for this simple app is an understanding of Python loops, functions, conditions, object-oriented programming, and how arrays work in Python.
To simplify the development cycle, however, some questions should come to your mind:
- How will you display your questions?
- How can users input their answers?
- How do you intend to specify the correct options while inputting questions?
- How about adding up scores for every correct answer?
On this link you can find an example of a quiz app made in Python and get a general idea of how your app should be made.
