diff --git a/src/app/modules/manage-exams-module/components/exam-cycle/exam-cycle.component.html b/src/app/modules/manage-exams-module/components/exam-cycle/exam-cycle.component.html
index d95f451aad7699252aa053b2ac1cac802b4af0b7..ae06535767290fe2cc543c14b2620a4b2deedf53 100644
--- a/src/app/modules/manage-exams-module/components/exam-cycle/exam-cycle.component.html
+++ b/src/app/modules/manage-exams-module/components/exam-cycle/exam-cycle.component.html
@@ -71,22 +71,22 @@
                                 <mat-datepicker #picker3></mat-datepicker>
                             </mat-form-field>
                         </div>
-                        <div class="flex flex-column ">
+                     <!--    <div class="flex flex-column ">
                             <h4 style="font-weight:400;margin-bottom:1rem;margin-top:2rem">Start time</h4>
                             <mat-form-field appearance="outline" style="width:16.5rem">
                                 <mat-label>hh:mm</mat-label>
                                 <input class="custom-timepicker"style="border:none;"matTimepicker #t="matTimepicker"  [strict]="false" id="timepicker-example" mode="12h">
                                 <mat-icon matSuffix (click)="t.showDialog()">access_time</mat-icon>
                             </mat-form-field>
-                        </div>
-                        <div class="flex flex-column">
+                        </div> -->
+                     <!--    <div class="flex flex-column">
                             <h4 style="font-weight:400;margin-bottom:1rem;margin-top:2rem">End time</h4>
                             <mat-form-field appearance="outline" style="width:16.5rem">
                                 <mat-label>hh:mm</mat-label>
                                 <input class="custom-timepicker"style="border:none;"matTimepicker #t="matTimepicker"  [strict]="false" id="timepicker-example" mode="12h">
                                 <mat-icon matSuffix (click)="t.showDialog()">access_time</mat-icon>
                             </mat-form-field>
-                        </div>
+                        </div> -->
                     </div>
                     <div class="flex flex-row  " style="gap: 1.5rem">
                         <div class="flex flex-column">
diff --git a/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.html b/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.html
index 347bbffb217e8e305e6a73e7de882f317ece8049..e823c82a8cd5fbcba6e926bfa40045c06bdfc654 100644
--- a/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.html
+++ b/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.html
@@ -1,7 +1,9 @@
 <div style="margin: 105px;">
     <h2 class="mx-auto m3 p3" i18n>{{msgs.manageExamsText}}</h2>
 </div>
-
+<div class="fixed right-0 ">
+    <button mat-button color="primary" mat-raised-button (click)="openBulkUploadDialog()">Bulk Upload</button>
+  </div>
 
 <app-shared-table
     [tableColumns]="examsTableColumns"
diff --git a/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.ts b/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.ts
index 96e39c9916fcdcfe914bb420ec89f7a411f0bfaa..b9c8179cd4079c561955876f8d4b3ada8d7b766e 100644
--- a/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.ts
+++ b/src/app/modules/manage-exams-module/components/exams-table/exams-table.component.ts
@@ -1,7 +1,9 @@
-import { Component } from '@angular/core';
+import { Component, Inject } from '@angular/core';
+import {MatDialog} from '@angular/material/dialog';
 
 import { msgs } from "../../../../../locale/en";
 import { TableColumn } from '../../../shared/components/shared-table/shared-table.component';
+import { SharedDialogOverlayComponent } from '../../../shared/components/shared-dialog-overlay/shared-dialog-overlay.component';
 
 export interface Exams {
   examId: string;
@@ -23,6 +25,7 @@ export class ExamsTableComponent {
 
   exams: Exams[];
   examsTableColumns: TableColumn[];
+  constructor(public dialog: MatDialog){}
 
   ngOnInit(): void {
     this.initializeColumns();
@@ -81,7 +84,6 @@ export class ExamsTableComponent {
         description: 'M SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -89,7 +91,6 @@ export class ExamsTableComponent {
         description: 'M SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -97,7 +98,6 @@ export class ExamsTableComponent {
         description: 'M SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -105,7 +105,6 @@ export class ExamsTableComponent {
         description: 'M SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -113,14 +112,12 @@ export class ExamsTableComponent {
         description: 'M SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       }, {
         examId: "M SC ( NURSING ) - SEMESTER 2",
         description: 'M SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -128,7 +125,6 @@ export class ExamsTableComponent {
         description: 'B SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -136,7 +132,6 @@ export class ExamsTableComponent {
         description: 'B SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -144,7 +139,6 @@ export class ExamsTableComponent {
         description: 'B SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -152,7 +146,6 @@ export class ExamsTableComponent {
         description: 'B SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       },
       {
@@ -160,7 +153,6 @@ export class ExamsTableComponent {
         description: 'B SC ( NURSING )',
         startDate: "23-06-2023",
         endDate: "23-12-2023",
-
         isActive: true
       }
     ];
@@ -169,4 +161,26 @@ export class ExamsTableComponent {
   removeItem(e: Event) {
     console.log(e)
   }
+
+
+  openBulkUploadDialog(): void {
+    const dialogRef = this.dialog.open(SharedDialogOverlayComponent, {
+      data: {
+        exams: this.exams,
+        examsTableColumns: this.examsTableColumns
+      },
+      maxWidth: '800vw',
+      maxHeight: '100vh',
+      height: '80%',
+      width: '80%',
+      disableClose: true
+    });
+
+    dialogRef.afterClosed().subscribe(result => {
+      console.log('The dialog was closed');
+      //this.animal = result;
+    });
 }
+
+
+}
\ No newline at end of file
diff --git a/src/app/modules/manage-exams-module/manage-exams-module.module.ts b/src/app/modules/manage-exams-module/manage-exams-module.module.ts
index b1414dfcaf88f2b2f6331e163a0e8c0f3279416e..bd5bdfa98c508dc7f27ba4de3a84dde651273c0a 100644
--- a/src/app/modules/manage-exams-module/manage-exams-module.module.ts
+++ b/src/app/modules/manage-exams-module/manage-exams-module.module.ts
@@ -6,7 +6,7 @@ import { ExamsTableComponent } from './components/exams-table/exams-table.compon
 import { SharedModule } from '../shared/shared.module';
 import { ExamCycleComponent } from './components/exam-cycle/exam-cycle.component';
 import { MaterialModule } from 'src/material/material.module';
-import { MatTimepickerModule } from 'mat-timepicker';
+//import { MatTimepickerModule } from 'mat-timepicker';
 
 
 
@@ -21,7 +21,7 @@ import { MatTimepickerModule } from 'mat-timepicker';
     ManageExamsModuleRoutingModule,
     SharedModule,
     MaterialModule,
-    MatTimepickerModule,
+   // MatTimepickerModule,
    
     
     
diff --git a/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.html b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..fcfbf3b770233bf8d0cbb8b04402bfd2a0183994
--- /dev/null
+++ b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.html
@@ -0,0 +1,32 @@
+<h1 mat-dialog-title>Bulk Upload Exam Cycles</h1>
+<div mat-dialog-content>
+  
+    
+
+
+<div *ngIf="tableDataReady; else dataNotReady">
+
+    <app-shared-table
+    [tableColumns]="examsTableColumns"
+    [tableData]="exams"
+    [isPageable]="false"
+    > 
+
+</app-shared-table>
+
+
+</div>
+
+<ng-template #dataNotReady>
+    <div>
+       
+        <input class="form-control" accept=".csv" id="csv" type="file" 
+        (change)="onFileSelect($event.target)" name="myfile">
+     </div>
+</ng-template>
+
+</div>
+<div mat-dialog-actions>
+  <button mat-button (click)="onNoClick()">Cancel</button>
+  <button mat-button [mat-dialog-close]="data" cdkFocusInitial>Add Exam Cycle</button>
+</div>
\ No newline at end of file
diff --git a/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.scss b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.spec.ts b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..26026e6ad160f235b04491ed2e0c240f96589d13
--- /dev/null
+++ b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { SharedDialogOverlayComponent } from './shared-dialog-overlay.component';
+
+describe('SharedDialogOverlayComponent', () => {
+  let component: SharedDialogOverlayComponent;
+  let fixture: ComponentFixture<SharedDialogOverlayComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ SharedDialogOverlayComponent ]
+    })
+    .compileComponents();
+
+    fixture = TestBed.createComponent(SharedDialogOverlayComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.ts b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..00b9a64dd4ec57600dbd89320da81b6298c2941f
--- /dev/null
+++ b/src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.ts
@@ -0,0 +1,143 @@
+import { Component, Inject } from '@angular/core';
+import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
+import { TableColumn } from '../../../shared/components/shared-table/shared-table.component';
+import { Exams } from '../../../manage-exams-module/components/exams-table/exams-table.component';
+export interface DialogData {
+  examsTableColumns: [];
+  exams: [];
+}
+
+@Component({
+  selector: 'app-shared-dialog-overlay',
+  templateUrl: './shared-dialog-overlay.component.html',
+  styleUrls: ['./shared-dialog-overlay.component.scss']
+})
+export class SharedDialogOverlayComponent {
+  exams: Exams[] = [];
+  examsTableColumns: TableColumn[] = [];
+  tableDataReady: boolean = false;
+
+
+  csvContent: any;
+  convertedArray: Array<any> = [];
+  properties: any = '';
+
+
+  constructor(
+    public dialogRef: MatDialogRef<SharedDialogOverlayComponent>,
+    @Inject(MAT_DIALOG_DATA) public data: DialogData,
+  ) { }
+
+  ngOnInit(): void {
+    /*   this.exams = this.data.exams;
+      console.log(this.exams)
+      this.examsTableColumns =this.data.examsTableColumns;
+      console.log(this.examsTableColumns)  */
+  }
+
+  onFileSelect(input:any) {
+    const files = input.files;
+    var fileTypes = ['csv']; //acceptable file types
+
+    if (files && files.length) {
+      var extension = input.files[0].name.split('.').pop().toLowerCase(), //file extension from input file
+        //Validating type of File Uploaded
+        isSuccess = fileTypes.indexOf(extension) > -1; //is extension in acceptable types
+      var that = this;
+      //Flag to check the Validation Result
+      if (isSuccess) {
+        const fileToRead = files[0];
+
+        const fileReader = new FileReader();
+
+        fileReader.onload = (fileLoadedEvent) => {
+          const textFromFileLoaded = fileLoadedEvent?.target?.result;
+          that.csvContent = textFromFileLoaded;
+
+          //Flag is for extracting first line
+          let flag = false;
+          // Main Data
+          let objarray: Array<any> = [];
+          //Properties
+          let prop: Array<any> = [];
+          //Total Length
+          let size: any = 0;
+
+          for (const line of that.csvContent.split(/[\r\n]+/)) {
+            if (flag) {
+              let obj: any = {};
+              for (let k = 0; k < size; k++) {
+                //Dynamic Object Properties
+                obj[prop[k]] = line.split(',')[k];
+              }
+              objarray.push(obj);
+            } else {
+              //First Line of CSV will be having Properties
+              for (let k = 0; k < line.split(',').length; k++) {
+                size = line.split(',').length;
+                //Removing all the spaces to make them usefull
+                prop.push(line.split(',')[k].replace(/ /g, ''));
+              }
+              flag = true;
+            }
+          }
+          //All the values converted from CSV to JSON Array
+          that.convertedArray = objarray;
+          that.properties = [];
+          //Object Keys of Converted JSON Array
+          that.properties = prop;
+
+
+          this.examsTableColumns =  [
+            {
+              columnDef:  that.properties[0],
+              header: 'Exam Cycle',
+              isSortable: true,
+              cell: (element: Record<string, any>) => `${element[that.properties[0]]}`
+            },
+            {
+              columnDef:that.properties[1],
+              header: 'Course Name',
+              isSortable: true,
+              cell: (element: Record<string, any>) => `${element[that.properties[1]]}`
+            },
+            {
+              columnDef: that.properties[2],
+              header: 'Start Date',
+              isSortable: true,
+              cell: (element: Record<string, any>) => `${element[that.properties[2]]}`
+            },
+            {
+              columnDef: that.properties[3],
+              header: 'End Date',
+              isSortable: true,
+              cell: (element: Record<string, any>) => `${element[that.properties[3]]}`
+            },
+          ];
+
+          this.exams = that.convertedArray
+        
+          this.tableDataReady = true;
+        };
+
+        fileReader.readAsText(fileToRead, 'UTF-8');
+      } else {
+        //On Error
+        console.error('Invalid File Format!');
+      }
+    }
+  }
+
+
+
+        
+
+
+  initializeColumns() {
+
+  }
+
+  onNoClick(): void {
+    this.dialogRef.close();
+  }
+}
diff --git a/src/app/modules/shared/shared.module.ts b/src/app/modules/shared/shared.module.ts
index cff0f3fcd362461b6115cab11de15b2bc0e23b96..0a63d75616a8dc237b50d8ea86fd561512a081f2 100644
--- a/src/app/modules/shared/shared.module.ts
+++ b/src/app/modules/shared/shared.module.ts
@@ -7,13 +7,15 @@ import { SharedTableComponent } from './components/shared-table/shared-table.com
 import {MaterialModule} from '../../../material/material.module';
 
 import { HeaderComponent } from './components/header/header.component';
+import { SharedDialogOverlayComponent } from './components/shared-dialog-overlay/shared-dialog-overlay.component';
 
 
 
 @NgModule({
   declarations: [
     SharedTableComponent,
-    HeaderComponent
+    HeaderComponent,
+    SharedDialogOverlayComponent
   ],
   imports: [
     CommonModule,