The Examination System Console Application is a robust, flexible tool designed to create, manage, and conduct various types of examinations. Built with C#, this application showcases object-oriented programming principles and provides a user-friendly interface for exam creation and administration.
- 📝 Support for multiple exam types (Practical and Final)
- 🔀 Various question formats (Multiple Choice and True/False)
- ⏱️ Customizable exam duration
- 🧮 Automatic scoring system
- 🎛️ Intuitive console-based user interface
The application is built using a modular architecture, promoting code reusability and maintainability:
classDiagram
class Program
class Subject
class Exam
class FinalExam
class PracticalExam
class QuestionBase
class MCQQuestion
class TrueFalseQuestion
class Answer
class QuestionList
Program --> Subject: uses
Program --> Exam: uses
Program --> QuestionBase: uses
Program --> Answer: uses
Exam <|-- FinalExam
Exam <|-- PracticalExam
QuestionBase <|-- MCQQuestion
QuestionBase <|-- TrueFalseQuestion
QuestionList --> "*" QuestionBase: contains
- Set the
ExaminationSystemConsoleApp
as the startup project. - Press F5 or click "Start Debugging" to run the application.
- Follow the on-screen prompts to create and take exams.
1- Create an Exam:
- Choose the exam type (Practical or Final)
- Set the exam duration
- Add questions (MCQ or True/False)
2- Take an Exam:
- Start the exam
- Answer the questions within the time limit
- View your score upon completion
To add new question types or exam formats:
1- Create a new class inheriting from QuestionBase or Exam respectively. 2- Implement the required methods and properties. 3- Update the Program class to include the new types in the creation process.
This project is licensed under the MIT License - see the LICENSE file for details.