Smart Quiz Generator is a simple interactive Python program that creates random quiz questions and checks user answers.
- Generates random math questions
- Interactive command-line interface
- Instant feedback for each answer
- Displays final score at the end
- Make sure Python 3 is installed
- Run the program using this command: python smart_quiz_generator.py
Welcome to Smart Quiz Generator 1.0 How many questions would you like? 3
Question 1: What is 12 + 7? Your answer: 19 Correct!
Question 2: What is 5 * 8? Your answer: 40 Correct!
Question 3: What is 20 - 4? Your answer: 15 Wrong. The correct answer was 16
You answered 2 out of 3 correctly. Well done!
This project demonstrates basic Python programming skills and an interactive console-based application. It can be extended with more features in the future.