This project aims to develop a web application for conducting Multiple Choice Question (MCQ) tests. The application will allow users to log in, select a test, answer questions, and receive immediate feedback on their performance.
Existing MCQ test platforms often lack interactivity, personalized feedback, and efficient question management. This project addresses these limitations by providing a user-friendly interface, instant feedback mechanisms, and a robust system for managing questions and tests.
Functional Requirements:
- User Authentication: Users should be able to log in securely.
- Test Selection: Users should be able to choose from a list of available tests.
- Question Display: Questions should be displayed clearly with multiple-choice options.
- Answer Submission: Users should be able to submit their answers.
- Immediate Feedback: Users should receive immediate feedback on their answers.
- Test Completion: Users should be notified upon completing a test and view their score.
- Question Management: (Optional) Administrators should be able to add, edit, and delete questions.
Non-Functional Requirements:
- User-Friendly Interface: The application should be intuitive and easy to navigate.
- Responsiveness: The application should be responsive across different devices.
- Security: User data and test content should be protected.
- Performance: The application should load quickly and respond efficiently to user interactions.
The features are prioritized as follows:
High Priority: User authentication, test selection, question display, answer submission, immediate feedback, test completion. Medium Priority: Question management (optional). Low Priority: Advanced features like analytics, time limits, and adaptive testing.
This prioritization ensures that the core functionality of the MCQ test application is delivered first, followed by optional features and enhancements.
- Functional Web Application: A fully functional web application meeting the requirements outlined above.
- Source Code: Well-structured and documented source code.
- User Documentation: Clear instructions on how to use the application.
- Deployment Guide: Instructions for deploying the application.
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptionsproperty like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})- Replace
tseslint.configs.recommendedtotseslint.configs.recommendedTypeCheckedortseslint.configs.strictTypeChecked - Optionally add
...tseslint.configs.stylisticTypeChecked - Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})