Exam and Testing Platform Development

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Exam and testing platform development

An exam platform is specialized software with strict honesty (proctoring), reliability (can't lose results), and security (prevent cheating) requirements. Unlike typical LMS quizzes, exams have: time limits, strict environment control, auto-grading with immediate result or manual review.

Exam types

Type Characteristics
Auto-graded Tests, multiple choice, short answers
Manual review Essays, coding tasks, case studies
Adaptive (CAT) Difficulty adjusts based on answers
Proctored With observer (online or in-person)
Open-book Can use materials

Anti-cheat measures

Kiosk mode: fullscreen, block tab switching, disable copy. Via document.onfullscreenchange + visibilitychange detection:

document.addEventListener('visibilitychange', () => {
  if (document.hidden && examInProgress) {
    recordViolation('tab_switch', { timestamp: Date.now() });
  }
});

Randomization: question order and answer options shuffled for each taker — shuffle_seed generated at start and saved.

Question bank: random selection from large bank makes identical versions unlikely.

Time limit: timer stored on server, not browser. Client syncs every 30 seconds. On timeout — auto-submit.

Online proctoring

Two levels:

  • AI proctoring: analyze webcam video for missing face, extra people, multiple monitors. Providers: Proctorio, ExamSoft, Examity, or self-hosted with MediaPipe/OpenCV.
  • Live proctoring: observer watches examinee real-time via WebRTC.

Webcam data recorded, not analyzed in real-time (reduce load), analyzed later.

Adaptive testing (CAT)

Computer Adaptive Testing selects questions based on estimated ability:

  1. Start with medium question (θ = 0)
  2. Correct → next question harder
  3. Wrong → easier
  4. IRT (Item Response Theory) algorithm estimates knowledge (θ) after each answer

Each question has difficulty (b), discrimination (a), guessing probability (c). Library catirt (R) or custom 3PL model.

Reliability and recovery

Exams can't be lost:

  • Auto-save current answers every 30 seconds (POST server)
  • On connection loss — resume from saved state after reconnect
  • On technical issue — procedure to reopen exam session

Answers stored in exam_answers with submitted_at, separate from final grade.

Certificate generation and verification

After passing, auto-generate certificate with unique UUID. Verification page (/verify/{uuid}) publicly accessible — employers can verify authenticity.

For government exams: integrate with government services or qualification registry.

Timeline

Platform with question bank, timer, auto-grading, basic anti-cheat and certificates: 3–4 months. With proctoring, adaptive tests, manual essay grading, integrations: 5–8 months.