Skip to content
Vinod Kumar PeddiSoftware Engineer
Section 1 of 7: Intro
03Full-stack product · Web + mobile2025

Exam Seating Management

A web and mobile platform for exam scheduling, seat allocation, faculty assignment and attendance tracking.

  • React
  • React Native
  • Node.js
  • Express
  • MongoDB
  • Python · openpyxl
  • ServiceNow
  • JWT · RBAC
Full-stack product · Web + mobile
Exam Seating Management admin dashboard, faculty allocation and login screens
Roles
Admin · Faculty · Student
Surfaces
Web dashboards · React Native apps
Integrations
Email automation · ServiceNow incidents · Excel import
01Overview

Overview

Exam Seating Management replaces the manual coordination behind exam day: which exam is in which room, which faculty member invigilates, who was absent, and who needs to be told what.

It ships as a web application and React Native apps for faculty and students, backed by one Node.js API and MongoDB.

02Problem

Problem

Exam operations involve three groups with different needs. Admins plan and react; faculty need their duties and a way to mark attendance; students need today's room and schedule — all from the same underlying data.

Data enters in bulk (student lists in Excel) and errors surface at the worst time — during an exam.

03Architecture

Architecture

  1. 01A single Express API with JWT authentication and role-based access control serves both the web app and the mobile apps.
  2. 02MongoDB stores exams, rooms and blocks, allocations, users and attendance.
  3. 03Automated email notifies absentees and malpractice cases; a ServiceNow integration opens incidents for system errors and user-reported problems.
  4. 04Bulk student uploads are parsed with Python (openpyxl) and validated on the backend before touching the database.
04Implementation

Implementation

Admin dashboard

Schedule exams, manage rooms and blocks, assign invigilators, add users by role and export lists to Excel.

Faculty and student dashboards

Faculty see allocations, mark attendance and get notified about duties. Students see today's exams, upcoming schedules and room information with real-time notifications — on web and mobile.

Access control

Every route is scoped by role; JWTs carry identity and the API enforces what each role may read or change.

05Challenges

Challenges

01

Three audiences, one API

Solved with role-based routes and per-role dashboards rather than three backends.

02

Messy bulk data

Excel imports go through validation before persistence so bad rows never reach the schedule.

03

Support during exams

System errors create ServiceNow incidents automatically instead of relying on someone noticing.

06Technical decisions

Technical decisions

01

React Native for faculty and students

Attendance is taken in a room, not at a desk; mobile is the primary surface for those roles.

02

MongoDB

Flexible documents suit allocations and schedules that change shape by exam type.

07Result

Result

A deployed system covering the full exam-day workflow — scheduling, allocation, attendance, notifications and incident tracking — across web and mobile.

08Lessons

Lessons

  • 01Role-based access is easiest when it is designed into the API from the first route.
  • 02Validating data at the boundary is cheaper than cleaning it in the database.