---
title: Student Feedback Survey Analysis
product: Dashboard
description: Learn how to analyze student feedback survey results using SurveyJS Dashboard. This demo shows an interactive dashboard for visualizing and exploring student satisfaction with classroom teaching.
framework: React
source: https://surveyjs.io/dashboard/examples/student-feedback-survey-analysis/reactjs
index: https://surveyjs.io/dashboard/examples/overview.md
---

# Student Feedback Survey Analysis (React)

Universities conduct periodic student surveys to gather first-hand feedback on the quality of education. A typical institution may have thousands of students across multiple colleges, programs, and specializations, making large-scale response analysis challenging. SurveyJS Dashboard streamlines this process by providing visual, efficient analysis tools. Users can filter responses by college, program, or subject to focus on the data most relevant to their needs.

## Files

### `public/index.html`

```html
<div id="loadingIndicator" class="data-loading-indicator-panel">
  <div class="data-loading-indicator">
    <svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
      <g clip-path="url(#clip0_17928_11482)">
        <path d="M32 64C14.36 64 0 49.65 0 32C0 14.35 14.36 0 32 0C49.64 0 64 14.35 64 32C64 49.65 49.64 64 32 64ZM32 4C16.56 4 4 16.56 4 32C4 47.44 16.56 60 32 60C47.44 60 60 47.44 60 32C60 16.56 47.44 4 32 4Z" fill="#E5E5E5" />
        <path d="M53.2101 55.2104C52.7001 55.2104 52.1901 55.0104 51.8001 54.6204C51.0201 53.8404 51.0201 52.5704 51.8001 51.7904C57.0901 46.5004 60.0001 39.4704 60.0001 31.9904C60.0001 24.5104 57.0901 17.4804 51.8001 12.1904C51.0201 11.4104 51.0201 10.1404 51.8001 9.36039C52.5801 8.58039 53.8501 8.58039 54.6301 9.36039C60.6701 15.4004 64.0001 23.4404 64.0001 31.9904C64.0001 40.5404 60.6701 48.5704 54.6301 54.6204C54.2401 55.0104 53.7301 55.2104 53.2201 55.2104H53.2101Z" fill="#19B394" />
      </g>
      <defs>
        <clipPath id="clip0_17928_11482">
          <rect width="64" height="64" fill="white" />
        </clipPath>
      </defs>
    </svg>
  </div>
</div>
<div id="surveyDashboardComponent"></div>
```

### `src/surveydata.js`

```js
export const dataFromServer = [
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "thermo_mech",
    "teacher-name": "Amelia Clarke",
    "semester": "Odd",
    "completion-date": "2025-10-30",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "2",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "1",
      "non-traditional-methods": "5",
      "class-time": "3",
      "study-material": "2",
      "experiment": "3",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "digital_marketing",
    "teacher-name": "Amelia Clarke",
    "semester": "Even",
    "completion-date": "2025-10-23",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "1",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Medical College",
    "program": "bpharma",
    "course": "pharma_chem",
    "teacher-name": "Sophie Ellis",
    "semester": "Even",
    "completion-date": "2025-10-26",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "2",
      "weak": "1",
      "counsel": "3",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "thermo_mech",
    "teacher-name": "Charlotte Green",
    "semester": "Yearly",
    "completion-date": "2025-09-28",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "2",
      "non-traditional-methods": "4",
      "class-time": "2",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "2"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_paint",
    "course": "portrait_painting",
    "teacher-name": "Emily Morgan",
    "semester": "Odd",
    "completion-date": "2025-11-07",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "2",
      "class-time": "5",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "machine_design",
    "teacher-name": "Emily Morgan",
    "semester": "Even",
    "completion-date": "2025-11-06",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "3",
      "delivery": "3",
      "guidance": "4",
      "encouragement": "1",
      "modern-tools": "3",
      "weak": "2",
      "counsel": "4",
      "non-traditional-methods": "3",
      "class-time": "5",
      "study-material": "5",
      "experiment": "4",
      "disciplined": "3",
      "evaluation": "4"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Science College",
    "program": "bsc_chem",
    "course": "organic_chem",
    "teacher-name": "Emily Morgan",
    "semester": "Even",
    "completion-date": "2025-09-22",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "3",
      "class-time": "5",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "oral_bio",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-10-29",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "1",
      "delivery": "4",
      "guidance": "2",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "1",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "5",
      "experiment": "4",
      "disciplined": "3",
      "evaluation": "4"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "strategic",
    "teacher-name": "Oliver Bennett",
    "semester": "Yearly",
    "completion-date": "2025-10-10",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "3",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "periodontics",
    "teacher-name": "Sophie Ellis",
    "semester": "Odd",
    "completion-date": "2025-10-06",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "3",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "3",
      "study-material": "3",
      "experiment": "4",
      "disciplined": "3",
      "evaluation": "3"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Science College",
    "program": "bsc_cs",
    "course": "os",
    "teacher-name": "Amelia Clarke",
    "semester": "Yearly",
    "completion-date": "2025-10-28",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "3",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "3",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "2",
      "class-time": "3",
      "study-material": "3",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Good guidance and fair evaluation process."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "optics",
    "teacher-name": "Thomas Hughes",
    "semester": "Even",
    "completion-date": "2025-09-28",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "2",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "2",
      "experiment": "1",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "business_analysis",
    "teacher-name": "Thomas Hughes",
    "semester": "Yearly",
    "completion-date": "2025-09-23",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "1",
      "delivery": "1",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "5",
      "weak": "2",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "3",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "periodontics",
    "teacher-name": "Sophie Ellis",
    "semester": "Yearly",
    "completion-date": "2025-09-08",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "2",
      "weak": "3",
      "counsel": "2",
      "non-traditional-methods": "5",
      "class-time": "2",
      "study-material": "1",
      "experiment": "5",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "oral_bio",
    "teacher-name": "Sophie Ellis",
    "semester": "Yearly",
    "completion-date": "2025-10-24",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "3",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "3",
      "study-material": "3",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Management College",
    "program": "bba",
    "course": "marketing",
    "teacher-name": "Amelia Clarke",
    "semester": "Odd",
    "completion-date": "2025-10-26",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "2",
      "weak": "3",
      "counsel": "4",
      "non-traditional-methods": "1",
      "class-time": "3",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "machine_design",
    "teacher-name": "Emily Morgan",
    "semester": "Odd",
    "completion-date": "2025-09-24",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "1",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "5",
      "experiment": "2",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "periodontics",
    "teacher-name": "Thomas Hughes",
    "semester": "Odd",
    "completion-date": "2025-11-03",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "2",
      "weak": "3",
      "counsel": "3",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "surveying",
    "teacher-name": "Oliver Bennett",
    "semester": "Even",
    "completion-date": "2025-10-06",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "2",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "3",
      "modern-tools": "1",
      "weak": "2",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "3",
      "experiment": "5",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Medical College",
    "program": "mbbs",
    "course": "anatomy",
    "teacher-name": "Amelia Clarke",
    "semester": "Odd",
    "completion-date": "2025-09-11",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "2",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "5",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Medical College",
    "program": "mbbs",
    "course": "physiology",
    "teacher-name": "Charlotte Green",
    "semester": "Yearly",
    "completion-date": "2025-11-04",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "2",
      "non-traditional-methods": "4",
      "class-time": "3",
      "study-material": "5",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "machine_design",
    "teacher-name": "Thomas Hughes",
    "semester": "Even",
    "completion-date": "2025-10-30",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "3",
      "experiment": "5",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "digital_marketing",
    "teacher-name": "James Phillips",
    "semester": "Odd",
    "completion-date": "2025-10-10",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "2",
      "evaluation": "4"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Medical College",
    "program": "mbbs",
    "course": "pathology",
    "teacher-name": "Charlotte Green",
    "semester": "Even",
    "completion-date": "2025-10-29",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "2",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "5",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "geotech",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-11-03",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "1",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "3",
      "evaluation": "5"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Science College",
    "program": "bsc_cs",
    "course": "algorithms",
    "teacher-name": "Oliver Bennett",
    "semester": "Even",
    "completion-date": "2025-09-12",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "4",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "3",
      "evaluation": "4"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "quantum_phy",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-09-08",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "3",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "2",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "1",
      "study-material": "5",
      "experiment": "1",
      "disciplined": "3",
      "evaluation": "4"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "economics",
    "teacher-name": "Oliver Bennett",
    "semester": "Yearly",
    "completion-date": "2025-10-25",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "3",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "2",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Good guidance and fair evaluation process."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "surveying",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-10-25",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "5",
      "delivery": "2",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "5",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "Good guidance and fair evaluation process."
  },
  {
    "college": "Medical College",
    "program": "mbbs",
    "course": "pathology",
    "teacher-name": "James Phillips",
    "semester": "Odd",
    "completion-date": "2025-09-26",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "3",
      "experiment": "2",
      "disciplined": "3",
      "evaluation": "4"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_sculpt",
    "course": "clay_modelling",
    "teacher-name": "James Phillips",
    "semester": "Even",
    "completion-date": "2025-09-02",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "1",
      "delivery": "3",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "2",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "surveying",
    "teacher-name": "Thomas Hughes",
    "semester": "Yearly",
    "completion-date": "2025-09-22",
    "teacher-evaluation": {
      "well-prepared": "1",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "2",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_paint",
    "course": "art_history",
    "teacher-name": "Charlotte Green",
    "semester": "Yearly",
    "completion-date": "2025-09-07",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "2",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Science College",
    "program": "bsc_cs",
    "course": "algorithms",
    "teacher-name": "Emily Morgan",
    "semester": "Even",
    "completion-date": "2025-09-21",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "3",
      "weak": "2",
      "counsel": "3",
      "non-traditional-methods": "1",
      "class-time": "4",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Management College",
    "program": "bba",
    "course": "finance",
    "teacher-name": "Thomas Hughes",
    "semester": "Yearly",
    "completion-date": "2025-09-20",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "5",
      "guidance": "2",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "2",
      "class-time": "3",
      "study-material": "2",
      "experiment": "3",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "lighting",
    "teacher-name": "James Phillips",
    "semester": "Odd",
    "completion-date": "2025-09-29",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "2",
      "weak": "2",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "5",
      "study-material": "2",
      "experiment": "1",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Medical College",
    "program": "mbbs",
    "course": "pathology",
    "teacher-name": "Oliver Bennett",
    "semester": "Even",
    "completion-date": "2025-10-17",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "3",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "2",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "2",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Science College",
    "program": "bsc_chem",
    "course": "inorganic_chem",
    "teacher-name": "Oliver Bennett",
    "semester": "Even",
    "completion-date": "2025-10-01",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "2",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "2",
      "class-time": "5",
      "study-material": "2",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Science College",
    "program": "bsc_cs",
    "course": "algorithms",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-10-28",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "2",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "2",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Medical College",
    "program": "bpharma",
    "course": "pharmacology",
    "teacher-name": "Charlotte Green",
    "semester": "Even",
    "completion-date": "2025-10-13",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "3",
      "weak": "3",
      "counsel": "3",
      "non-traditional-methods": "1",
      "class-time": "2",
      "study-material": "4",
      "experiment": "1",
      "disciplined": "2",
      "evaluation": "3"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "digital_photo",
    "teacher-name": "Sophie Ellis",
    "semester": "Yearly",
    "completion-date": "2025-11-10",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "1",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "1",
      "non-traditional-methods": "5",
      "class-time": "1",
      "study-material": "2",
      "experiment": "2",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Good guidance and fair evaluation process."
  },
  {
    "college": "Engineering College",
    "program": "btech_cse",
    "course": "oop",
    "teacher-name": "Emily Morgan",
    "semester": "Odd",
    "completion-date": "2025-10-07",
    "teacher-evaluation": {
      "well-prepared": "1",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "3",
      "class-time": "3",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "3",
      "evaluation": "3"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "surveying",
    "teacher-name": "Thomas Hughes",
    "semester": "Yearly",
    "completion-date": "2025-10-14",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "3",
      "non-traditional-methods": "3",
      "class-time": "3",
      "study-material": "1",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_sculpt",
    "course": "metal_casting",
    "teacher-name": "George Turner",
    "semester": "Yearly",
    "completion-date": "2025-09-28",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "2",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "3",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "thermo",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-11-06",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "3",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "5",
      "class-time": "5",
      "study-material": "3",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Science College",
    "program": "bsc_chem",
    "course": "inorganic_chem",
    "teacher-name": "Thomas Hughes",
    "semester": "Odd",
    "completion-date": "2025-11-02",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "2",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "2",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "1",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "1"
    },
    "comments": "Excellent communication and teaching methods."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "thermo",
    "teacher-name": "Charlotte Green",
    "semester": "Even",
    "completion-date": "2025-10-02",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "1",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "2",
      "study-material": "2",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "strategic",
    "teacher-name": "Amelia Clarke",
    "semester": "Yearly",
    "completion-date": "2025-10-07",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "5",
      "delivery": "3",
      "guidance": "3",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "fluid_mech",
    "teacher-name": "Oliver Bennett",
    "semester": "Yearly",
    "completion-date": "2025-10-19",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "2",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Medical College",
    "program": "bpharma",
    "course": "pharmacology",
    "teacher-name": "Oliver Bennett",
    "semester": "Even",
    "completion-date": "2025-09-11",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "4",
      "experiment": "5",
      "disciplined": "3",
      "evaluation": "3"
    },
    "comments": "Excellent communication and teaching methods."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "thermo",
    "teacher-name": "Amelia Clarke",
    "semester": "Odd",
    "completion-date": "2025-10-15",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "5",
      "weak": "2",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "operations",
    "teacher-name": "James Phillips",
    "semester": "Even",
    "completion-date": "2025-10-29",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "2",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "2",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "5",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "geotech",
    "teacher-name": "Emily Morgan",
    "semester": "Yearly",
    "completion-date": "2025-09-15",
    "teacher-evaluation": {
      "well-prepared": "1",
      "syllabus": "2",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "1",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "machine_design",
    "teacher-name": "Charlotte Green",
    "semester": "Even",
    "completion-date": "2025-10-05",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "2",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Management College",
    "program": "bba",
    "course": "hr",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-09-06",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "2",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "5",
      "study-material": "3",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "optics",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-10-17",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "2",
      "non-traditional-methods": "3",
      "class-time": "4",
      "study-material": "3",
      "experiment": "1",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Management College",
    "program": "bba",
    "course": "marketing",
    "teacher-name": "Amelia Clarke",
    "semester": "Yearly",
    "completion-date": "2025-10-03",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "2",
      "encouragement": "1",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "4",
      "experiment": "5",
      "disciplined": "3",
      "evaluation": "4"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "digital_marketing",
    "teacher-name": "Thomas Hughes",
    "semester": "Even",
    "completion-date": "2025-09-24",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "2",
      "class-time": "5",
      "study-material": "2",
      "experiment": "2",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "oral_bio",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-09-17",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "1",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "3",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "5",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "digital_photo",
    "teacher-name": "Emily Morgan",
    "semester": "Yearly",
    "completion-date": "2025-09-16",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "1",
      "modern-tools": "2",
      "weak": "2",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "5",
      "experiment": "2",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "machine_design",
    "teacher-name": "Sophie Ellis",
    "semester": "Odd",
    "completion-date": "2025-10-17",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "4",
      "delivery": "3",
      "guidance": "2",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "3",
      "evaluation": "5"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Medical College",
    "program": "bpharma",
    "course": "pharmacology",
    "teacher-name": "Thomas Hughes",
    "semester": "Even",
    "completion-date": "2025-09-22",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "5",
      "guidance": "2",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "3",
      "experiment": "1",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "structural",
    "teacher-name": "George Turner",
    "semester": "Yearly",
    "completion-date": "2025-09-13",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "1",
      "encouragement": "3",
      "modern-tools": "2",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "4",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Excellent communication and teaching methods."
  },
  {
    "college": "Science College",
    "program": "bsc_cs",
    "course": "os",
    "teacher-name": "James Phillips",
    "semester": "Yearly",
    "completion-date": "2025-10-26",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "2",
      "encouragement": "2",
      "modern-tools": "5",
      "weak": "3",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "3",
      "study-material": "3",
      "experiment": "4",
      "disciplined": "1",
      "evaluation": "4"
    },
    "comments": "Excellent communication and teaching methods."
  },
  {
    "college": "Management College",
    "program": "bba",
    "course": "hr",
    "teacher-name": "Charlotte Green",
    "semester": "Even",
    "completion-date": "2025-09-03",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "machine_design",
    "teacher-name": "Emily Morgan",
    "semester": "Odd",
    "completion-date": "2025-10-21",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "2",
      "weak": "2",
      "counsel": "3",
      "non-traditional-methods": "3",
      "class-time": "2",
      "study-material": "5",
      "experiment": "1",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "structural",
    "teacher-name": "Thomas Hughes",
    "semester": "Even",
    "completion-date": "2025-09-03",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "2",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "2"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Medical College",
    "program": "mbbs",
    "course": "anatomy",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-10-22",
    "teacher-evaluation": {
      "well-prepared": "1",
      "syllabus": "5",
      "delivery": "1",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "leadership",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-10-08",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "2",
      "counsel": "4",
      "non-traditional-methods": "2",
      "class-time": "5",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Engineering College",
    "program": "btech_mech",
    "course": "thermo_mech",
    "teacher-name": "James Phillips",
    "semester": "Odd",
    "completion-date": "2025-09-19",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "2",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "3",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "periodontics",
    "teacher-name": "Amelia Clarke",
    "semester": "Even",
    "completion-date": "2025-11-01",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "1",
      "guidance": "4",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "2",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "2",
      "study-material": "3",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_paint",
    "course": "portrait_painting",
    "teacher-name": "Thomas Hughes",
    "semester": "Odd",
    "completion-date": "2025-10-01",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "3",
      "delivery": "2",
      "guidance": "5",
      "encouragement": "2",
      "modern-tools": "1",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "5",
      "class-time": "4",
      "study-material": "5",
      "experiment": "1",
      "disciplined": "4",
      "evaluation": "3"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Medical College",
    "program": "bpharma",
    "course": "pharma_chem",
    "teacher-name": "Oliver Bennett",
    "semester": "Yearly",
    "completion-date": "2025-11-10",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "3",
      "counsel": "4",
      "non-traditional-methods": "3",
      "class-time": "4",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "3"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Management College",
    "program": "bba",
    "course": "marketing",
    "teacher-name": "James Phillips",
    "semester": "Odd",
    "completion-date": "2025-10-14",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "2",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "3",
      "study-material": "3",
      "experiment": "4",
      "disciplined": "4",
      "evaluation": "4"
    },
    "comments": "Great teaching style and very supportive."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "quantum_phy",
    "teacher-name": "Charlotte Green",
    "semester": "Yearly",
    "completion-date": "2025-10-04",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "3",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_paint",
    "course": "portrait_painting",
    "teacher-name": "Sophie Ellis",
    "semester": "Odd",
    "completion-date": "2025-09-26",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "2",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "2",
      "study-material": "4",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Excellent communication and teaching methods."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "economics",
    "teacher-name": "Charlotte Green",
    "semester": "Odd",
    "completion-date": "2025-10-02",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "3",
      "class-time": "5",
      "study-material": "5",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_sculpt",
    "course": "metal_casting",
    "teacher-name": "Amelia Clarke",
    "semester": "Yearly",
    "completion-date": "2025-10-17",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "3",
      "guidance": "2",
      "encouragement": "1",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "3",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Medical College",
    "program": "bpharma",
    "course": "pharmacology",
    "teacher-name": "Oliver Bennett",
    "semester": "Yearly",
    "completion-date": "2025-09-25",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "2",
      "guidance": "3",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "3",
      "evaluation": "5"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "strategic",
    "teacher-name": "Sophie Ellis",
    "semester": "Odd",
    "completion-date": "2025-09-25",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "4",
      "delivery": "3",
      "guidance": "3",
      "encouragement": "5",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "1",
      "study-material": "2",
      "experiment": "5",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "periodontics",
    "teacher-name": "Emily Morgan",
    "semester": "Odd",
    "completion-date": "2025-10-28",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "2",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "2",
      "non-traditional-methods": "2",
      "class-time": "4",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "5"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Medical College",
    "program": "bds",
    "course": "dental_materials",
    "teacher-name": "Thomas Hughes",
    "semester": "Yearly",
    "completion-date": "2025-11-06",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "3",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "5",
      "experiment": "1",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_paint",
    "course": "portrait_painting",
    "teacher-name": "Thomas Hughes",
    "semester": "Odd",
    "completion-date": "2025-09-27",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "3",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "4",
      "study-material": "4",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "business_analysis",
    "teacher-name": "Oliver Bennett",
    "semester": "Yearly",
    "completion-date": "2025-10-02",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "1",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "2",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "3",
      "evaluation": "5"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "photo_editing",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-09-21",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "3",
      "guidance": "2",
      "encouragement": "4",
      "modern-tools": "3",
      "weak": "3",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "3",
      "study-material": "2",
      "experiment": "2",
      "disciplined": "4",
      "evaluation": "3"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "lighting",
    "teacher-name": "George Turner",
    "semester": "Odd",
    "completion-date": "2025-10-18",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "2",
      "class-time": "5",
      "study-material": "1",
      "experiment": "4",
      "disciplined": "1",
      "evaluation": "4"
    },
    "comments": "Sometimes the pace is too fast, but overall good."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_sculpt",
    "course": "clay_modelling",
    "teacher-name": "Sophie Ellis",
    "semester": "Yearly",
    "completion-date": "2025-09-22",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "3",
      "counsel": "2",
      "non-traditional-methods": "3",
      "class-time": "4",
      "study-material": "3",
      "experiment": "2",
      "disciplined": "5",
      "evaluation": "2"
    },
    "comments": "Helpful and approachable outside of class."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "business_analysis",
    "teacher-name": "James Phillips",
    "semester": "Odd",
    "completion-date": "2025-09-25",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "3",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "3",
      "study-material": "5",
      "experiment": "5",
      "disciplined": "3",
      "evaluation": "3"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Science College",
    "program": "bsc_phy",
    "course": "quantum_phy",
    "teacher-name": "Amelia Clarke",
    "semester": "Odd",
    "completion-date": "2025-10-28",
    "teacher-evaluation": {
      "well-prepared": "1",
      "syllabus": "1",
      "delivery": "5",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "4",
      "non-traditional-methods": "5",
      "class-time": "5",
      "study-material": "4",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "2"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Management College",
    "program": "mba",
    "course": "leadership",
    "teacher-name": "Charlotte Green",
    "semester": "Yearly",
    "completion-date": "2025-10-30",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "1",
      "delivery": "2",
      "guidance": "5",
      "encouragement": "3",
      "modern-tools": "5",
      "weak": "3",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "2",
      "study-material": "3",
      "experiment": "5",
      "disciplined": "4",
      "evaluation": "3"
    },
    "comments": "Would love more practical examples."
  },
  {
    "college": "Engineering College",
    "program": "btech_cse",
    "course": "networks",
    "teacher-name": "Emily Morgan",
    "semester": "Yearly",
    "completion-date": "2025-11-09",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "2",
      "modern-tools": "5",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "2",
      "class-time": "5",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "2"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Science College",
    "program": "bsc_cs",
    "course": "ds",
    "teacher-name": "Amelia Clarke",
    "semester": "Odd",
    "completion-date": "2025-09-21",
    "teacher-evaluation": {
      "well-prepared": "2",
      "syllabus": "4",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "3",
      "modern-tools": "3",
      "weak": "4",
      "counsel": "3",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "3",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Good guidance and fair evaluation process."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "lighting",
    "teacher-name": "Amelia Clarke",
    "semester": "Yearly",
    "completion-date": "2025-11-05",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "4",
      "delivery": "1",
      "guidance": "2",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "5",
      "counsel": "3",
      "non-traditional-methods": "2",
      "class-time": "2",
      "study-material": "4",
      "experiment": "4",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "Good guidance and fair evaluation process."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_photo",
    "course": "digital_photo",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-09-13",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "2",
      "delivery": "4",
      "guidance": "5",
      "encouragement": "5",
      "modern-tools": "4",
      "weak": "3",
      "counsel": "3",
      "non-traditional-methods": "3",
      "class-time": "5",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "4",
      "evaluation": "1"
    },
    "comments": "Good subject knowledge, but can improve on class engagement."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "digital_marketing",
    "teacher-name": "Sophie Ellis",
    "semester": "Yearly",
    "completion-date": "2025-10-05",
    "teacher-evaluation": {
      "well-prepared": "4",
      "syllabus": "4",
      "delivery": "3",
      "guidance": "4",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "5",
      "counsel": "5",
      "non-traditional-methods": "4",
      "class-time": "2",
      "study-material": "2",
      "experiment": "1",
      "disciplined": "1",
      "evaluation": "1"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_paint",
    "course": "art_history",
    "teacher-name": "Amelia Clarke",
    "semester": "Even",
    "completion-date": "2025-10-05",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "2",
      "delivery": "4",
      "guidance": "3",
      "encouragement": "4",
      "modern-tools": "4",
      "weak": "4",
      "counsel": "4",
      "non-traditional-methods": "4",
      "class-time": "5",
      "study-material": "5",
      "experiment": "2",
      "disciplined": "2",
      "evaluation": "5"
    },
    "comments": "Really appreciate the use of examples in lectures."
  },
  {
    "college": "Fine Arts College",
    "program": "bfa_sculpt",
    "course": "stone_carving",
    "teacher-name": "Emily Morgan",
    "semester": "Odd",
    "completion-date": "2025-09-03",
    "teacher-evaluation": {
      "well-prepared": "3",
      "syllabus": "3",
      "delivery": "3",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "3",
      "non-traditional-methods": "3",
      "class-time": "2",
      "study-material": "4",
      "experiment": "3",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Management College",
    "program": "pgdm",
    "course": "operations",
    "teacher-name": "Oliver Bennett",
    "semester": "Odd",
    "completion-date": "2025-09-19",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "3",
      "delivery": "3",
      "guidance": "3",
      "encouragement": "5",
      "modern-tools": "3",
      "weak": "2",
      "counsel": "4",
      "non-traditional-methods": "1",
      "class-time": "3",
      "study-material": "5",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "5"
    },
    "comments": "The teacher motivates us to perform better."
  },
  {
    "college": "Engineering College",
    "program": "btech_cse",
    "course": "ai",
    "teacher-name": "Charlotte Green",
    "semester": "Odd",
    "completion-date": "2025-11-09",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "4",
      "encouragement": "4",
      "modern-tools": "5",
      "weak": "4",
      "counsel": "5",
      "non-traditional-methods": "3",
      "class-time": "4",
      "study-material": "5",
      "experiment": "3",
      "disciplined": "3",
      "evaluation": "3"
    },
    "comments": "Very interactive sessions and modern teaching aids used."
  },
  {
    "college": "Engineering College",
    "program": "btech_civil",
    "course": "structural",
    "teacher-name": "Thomas Hughes",
    "semester": "Even",
    "completion-date": "2025-09-13",
    "teacher-evaluation": {
      "well-prepared": "5",
      "syllabus": "5",
      "delivery": "5",
      "guidance": "5",
      "encouragement": "4",
      "modern-tools": "2",
      "weak": "3",
      "counsel": "3",
      "non-traditional-methods": "2",
      "class-time": "3",
      "study-material": "5",
      "experiment": "4",
      "disciplined": "5",
      "evaluation": "4"
    },
    "comments": "The teacher motivates us to perform better."
  }
];
```

### `src/SurveyDashboardComponent.jsx`

```js
import React from "react";
import { Model } from "survey-core";
import { Dashboard } from "survey-analytics";
import "survey-analytics/survey.analytics.css";
import "./index.css";
import { json } from "./json";
import "survey-core/survey-core.min.css";
import { dataFromServer } from "./surveydata";

class SurveyDashboardComponent extends React.Component {
    componentDidMount() {
        const survey = new Model(json);
        // Imitate an asynchronous call that loads data from a server
        setTimeout(() => {
            const dashboard = new Dashboard({
                questions: survey.getAllQuestions(),
                data: dataFromServer,
                items: [
                    {
                        name: "college",
                        type: "bar",
                        title: "College"
                    },
                    { type: "responsecount" },
                    "program",
                    "course",
                    "teacher-name",
                    "semester",
                    "completion-date",
                    {
                        name: "teacher-evaluation",
                        type: "stackedbar",
                        visualizer: {
                            legendPosition: "bottom"
                        }
                    },
                    "comments"
                ]
            });
            
            
            
            
            document.getElementById("loadingIndicator").style.display = "none";
            dashboard.render("surveyDashboardContainer");
            
        }, 1000);
    }
    render() {
        return React.createElement("div", { id: "surveyDashboardContainer" });
    }
}

export default SurveyDashboardComponent;
```

### `src/index.css`

```css
/* You can add your custom CSS here. */
.data-loading-indicator-panel {
    width: 100%;
    height: 400px;
}
.data-loading-indicator {
    position: relative;
    width: 64px;
    height: 64px;
    left: calc((100% - 64px)/ 2);
    top: calc((100% - 64px)/ 2);
    animation: data-loading-indicator-spinner 1s infinite linear;
}
@keyframes data-loading-indicator-spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
```

### `src/index.js`

```js
import React from "react";
import { createRoot } from "react-dom/client";
import SurveyDashboardComponent from "./SurveyDashboardComponent";

const root = createRoot(document.getElementById("surveyDashboardComponent"));
root.render(<SurveyDashboardComponent />);
```

### `src/json.js`

```js
export const json = {
  "title": "STUDENT FEEDBACK ON CLASSROOM TEACHING",
  "completedHtml": "<div style=\"max-width: 1000px; width: 100%; padding 32px; margin: 0 auto;\">\n<h3 style=\"text-align: justify\">Thank You!</h3>\n<br>\n<p style=\"text-align: justify\">Dear {student-name},</p>\n<br>\n<p style=\"text-align: justify\">Thank you for taking the time to provide your feedback on our classroom teaching. Your insights and opinions are invaluable to us and play a crucial role in improving the quality of education.</p>\n<br>\n<p style=\"text-align: justify\">We greatly appreciate your honest and thoughtful responses. Your feedback helps us understand what we are doing well and where we can make improvements to enhance your learning experience.</p>\n<br>\n<p style=\"text-align: justify\">Rest assured, your responses will be reviewed carefully and used to inform our teaching practices, curriculum development, and overall classroom environment.</p>\n<br>\n<p style=\"text-align: justify\">If you have any further comments or suggestions, please feel free to <a href=\"https://www.google.com/\">reach out to us</a>. We are always here to listen and support you.</p>\n<br>\n<p style=\"text-align: justify\">Thank you once again for your participation and contribution.</p>\n<br>\n<p style=\"text-align: justify\">Best regards,</p>\n<br>\n<p style=\"text-align: justify\">[Your School/Institution Name]</p>\n</div>",
  "pages": [
    {
      "name": "intro",
      "elements": [
        {
          "type": "dropdown",
          "name": "college",
          "title": "Select your college",
          "placeholder": "Select college...",
          "choices": [
            "Science College",
            "Engineering College",
            "Management College",
            "Medical College",
            "Fine Arts College"
          ]
        },
        {
          "type": "dropdown",
          "name": "program",
          "title": "Program and specialization",
          "choices": [
            { "value": "bsc_cs", "text": "B.Sc - Computer Science", "college": "Science College" },
            { "value": "bsc_phy", "text": "B.Sc - Physics", "college": "Science College" },
            { "value": "bsc_chem", "text": "B.Sc - Chemistry", "college": "Science College" },

            { "value": "btech_cse", "text": "B.Tech - Computer Science & Engineering", "college": "Engineering College" },
            { "value": "btech_mech", "text": "B.Tech - Mechanical Engineering", "college": "Engineering College" },
            { "value": "btech_civil", "text": "B.Tech - Civil Engineering", "college": "Engineering College" },

            { "value": "bba", "text": "BBA - Bachelor of Business Administration", "college": "Management College" },
            { "value": "mba", "text": "MBA - Master of Business Administration", "college": "Management College" },
            { "value": "pgdm", "text": "PGDM - Post Graduate Diploma in Management", "college": "Management College" },

            { "value": "mbbs", "text": "MBBS - Bachelor of Medicine and Surgery", "college": "Medical College" },
            { "value": "bds", "text": "BDS - Bachelor of Dental Surgery", "college": "Medical College" },
            { "value": "bpharma", "text": "B.Pharm - Bachelor of Pharmacy", "college": "Medical College" },

            { "value": "bfa_paint", "text": "BFA - Painting", "college": "Fine Arts College" },
            { "value": "bfa_sculpt", "text": "BFA - Sculpture", "college": "Fine Arts College" },
            { "value": "bfa_photo", "text": "BFA - Photography", "college": "Fine Arts College" }
          ],
          "choicesVisibleIf": "{college} = {$item.college}",
          "enableIf": "{college} notempty",
          "placeholder": "Select program...",
          "startWithNewLine": false
        },
        {
          "type": "dropdown",
          "name": "course",
          "title": "Course or subject taken",
          "choices": [
            { "value": "ds", "text": "Data Structures", "program": "bsc_cs" },
            { "value": "os", "text": "Operating Systems", "program": "bsc_cs" },
            { "value": "algorithms", "text": "Algorithms", "program": "bsc_cs" },

            { "value": "quantum_phy", "text": "Quantum Physics", "program": "bsc_phy" },
            { "value": "optics", "text": "Optics", "program": "bsc_phy" },
            { "value": "thermo", "text": "Thermodynamics", "program": "bsc_phy" },

            { "value": "organic_chem", "text": "Organic Chemistry", "program": "bsc_chem" },
            { "value": "inorganic_chem", "text": "Inorganic Chemistry", "program": "bsc_chem" },
            { "value": "physical_chem", "text": "Physical Chemistry", "program": "bsc_chem" },

            { "value": "oop", "text": "Object-Oriented Programming", "program": "btech_cse" },
            { "value": "networks", "text": "Computer Networks", "program": "btech_cse" },
            { "value": "ai", "text": "Artificial Intelligence", "program": "btech_cse" },

            { "value": "thermo_mech", "text": "Thermodynamics", "program": "btech_mech" },
            { "value": "fluid_mech", "text": "Fluid Mechanics", "program": "btech_mech" },
            { "value": "machine_design", "text": "Machine Design", "program": "btech_mech" },

            { "value": "structural", "text": "Structural Engineering", "program": "btech_civil" },
            { "value": "surveying", "text": "Surveying", "program": "btech_civil" },
            { "value": "geotech", "text": "Geotechnical Engineering", "program": "btech_civil" },

            { "value": "marketing", "text": "Marketing Management", "program": "bba" },
            { "value": "finance", "text": "Financial Accounting", "program": "bba" },
            { "value": "hr", "text": "Human Resource Management", "program": "bba" },

            { "value": "strategic", "text": "Strategic Management", "program": "mba" },
            { "value": "leadership", "text": "Leadership and Ethics", "program": "mba" },
            { "value": "business_analysis", "text": "Business Analytics", "program": "mba" },

            { "value": "economics", "text": "Managerial Economics", "program": "pgdm" },
            { "value": "operations", "text": "Operations Management", "program": "pgdm" },
            { "value": "digital_marketing", "text": "Digital Marketing", "program": "pgdm" },

            { "value": "anatomy", "text": "Human Anatomy", "program": "mbbs" },
            { "value": "physiology", "text": "Physiology", "program": "mbbs" },
            { "value": "pathology", "text": "Pathology", "program": "mbbs" },

            { "value": "oral_bio", "text": "Oral Biology", "program": "bds" },
            { "value": "dental_materials", "text": "Dental Materials", "program": "bds" },
            { "value": "periodontics", "text": "Periodontics", "program": "bds" },

            { "value": "pharmaceutics", "text": "Pharmaceutics", "program": "bpharma" },
            { "value": "pharmacology", "text": "Pharmacology", "program": "bpharma" },
            { "value": "pharma_chem", "text": "Pharmaceutical Chemistry", "program": "bpharma" },

            { "value": "color_theory", "text": "Color Theory", "program": "bfa_paint" },
            { "value": "portrait_painting", "text": "Portrait Painting", "program": "bfa_paint" },
            { "value": "art_history", "text": "Art History", "program": "bfa_paint" },

            { "value": "clay_modelling", "text": "Clay Modelling", "program": "bfa_sculpt" },
            { "value": "stone_carving", "text": "Stone Carving", "program": "bfa_sculpt" },
            { "value": "metal_casting", "text": "Metal Casting", "program": "bfa_sculpt" },

            { "value": "digital_photo", "text": "Digital Photography", "program": "bfa_photo" },
            { "value": "lighting", "text": "Studio Lighting", "program": "bfa_photo" },
            { "value": "photo_editing", "text": "Photo Editing Techniques", "program": "bfa_photo" }
          ],
          "choicesVisibleIf": "{program} = {$item.program}",
          "enableIf": "{program} notempty",
          "placeholder": "Select course...",
          "startWithNewLine": false
        },
        {
          "type": "dropdown",
          "name": "teacher-name",
          "title": "Select a teacher to evaluate",
          "choices": [
            "Oliver Bennett",
            "Amelia Clarke",
            "Thomas Hughes",
            "Emily Morgan",
            "George Turner",
            "Charlotte Green",
            "James Phillips",
            "Sophie Ellis"
          ]
        },
        {
          "type": "radiogroup",
          "name": "semester",
          "title": "Semester",
          "choices": ["Even", "Odd", "Yearly"],
          "colCount": 3,
          "startWithNewLine": false
        },
        {
          "type": "text",
          "name": "completion-date",
          "title": "Completion date",
          "inputType": "date",
          "maxValueExpression": "today()",
          "startWithNewLine": false
        }
      ]
    },
    {
      "name": "evaluation-page",
      "elements": [
        {
          "type": "matrix",
          "name": "teacher-evaluation",
          "title": "Please rate the following aspects of the teacher's performance",
          "columns": [
            { "value": "1", "text": "Need Improvement" },
            { "value": "2", "text": "Satisfactory" },
            { "value": "3", "text": "Good" },
            { "value": "4", "text": "Excellent" },
            { "value": "5", "text": "Outstanding" }
          ],
          "rows": [
            { "value": "well-prepared", "text": "The teacher is well-prepared for class and has good command over the subject." },
            { "value": "syllabus", "text": "The teacher covers the entire syllabus in time." },
            { "value": "delivery", "text": "The teacher delivers the contents efficiently and makes the subject interesting." },
            { "value": "guidance", "text": "The teacher provides guidance in or outside the class." },
            { "value": "encouragement", "text": "The teacher encourages students to participate in class discussions, ask questions, and share their opinions." },
            { "value": "modern-tools", "text": "The teacher uses modern teaching tools, content notes, handouts, and suggests useful references (offline/online)." },
            { "value": "weak", "text": "The teacher focuses on students who are academically weak or poor in performance." },
            { "value": "counsel", "text": "The teacher counsels students in their physical, emotional, or academic difficulties." },
            { "value": "non-traditional-methods", "text": "The teacher assesses students' knowledge using non-traditional methods such as quizzes, seminars, assignments, and presentations." },
            { "value": "class-time", "text": "The teacher schedules class time and tasks to encourage students to solve problems and think critically." },
            { "value": "study-material", "text": "The teacher provides study materials and references (textbooks, e-resources, journals, etc.) on time." },
            { "value": "experiment", "text": "The teacher helps students conduct experiments through clear instructions or demonstrations." },
            { "value": "disciplined", "text": "The classroom environment is well disciplined by the teacher." },
            { "value": "evaluation", "text": "The evaluation process conducted by the teacher is uniform and unbiased." }
          ],
          "eachRowRequired": true,
          "alternateRows": true
        },
        {
          "type": "comment",
          "name": "comments",
          "title": "Additional comments or suggestions",
          "rows": 3,
          "autoGrow": true
        }
      ]
    }
  ],
  "completeText": "Submit",
  "widthMode": "static",
  "width": "1200",
  "headerView": "advanced"
};
```

### `package.json`

```json
{
  "dependencies": {
    "react": "latest",
    "react-dom": "latest",
    "survey-core": "latest",
    "chart.js": "4.5.1",
    "survey-analytics": "latest"
  },
  "devDependencies": {
    "react-scripts": "latest"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  },
  "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ]
}
```

## Other Frameworks

- [Angular](https://surveyjs.io/dashboard/examples/student-feedback-survey-analysis/angular.md)
- [Vue 3](https://surveyjs.io/dashboard/examples/student-feedback-survey-analysis/vue3js.md)
- [jQuery](https://surveyjs.io/dashboard/examples/student-feedback-survey-analysis/jquery.md)
- [Vanilla JS](https://surveyjs.io/dashboard/examples/student-feedback-survey-analysis/vanillajs.md)
