-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTechCommittee.html
More file actions
1152 lines (1127 loc) · 53.7 KB
/
TechCommittee.html
File metadata and controls
1152 lines (1127 loc) · 53.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Technical Program Committee | MetaSphere 2026</title>
<link rel="stylesheet" href="/Style.css" />
<link
rel="stylesheet"
href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family:Inter:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/lucide@latest"></script>
<style>
body {
font-family: "Inter", sans-serif;
background-color: #fffbf5;
color: #1a202c;
}
.gradient-text {
background: linear-gradient(45deg, #f97316, #d946ef);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
color: #1a202c;
border: 1px solid #e2e8f0;
border-radius: 0.5rem;
padding: 0.5rem 0.75rem;
transition: all 0.2s ease-in-out;
}
.dataTables_wrapper .dataTables_length select:focus,
.dataTables_wrapper .dataTables_filter input:focus {
outline: none;
border-color: #f97316;
box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.3);
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
padding: 0.5em 1em;
margin-left: 2px;
border-radius: 0.5rem;
transition: all 0.2s ease-in-out;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
background: #f97316;
color: white !important;
border: 1px solid #f97316;
}
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
color: #4a5568;
}
#committeeTable thead {
background-color: #fef3c7;
/* A light orange to match the theme */
}
</style>
</head>
<body class="antialiased">
<div class="main-container">
<header
class="top-0 left-0 right-0 z-50 bg-black/30 backdrop-blur-lg shadow-md relative"
>
<!-- Banner Section -->
<div class="relative">
<img
src="Assets/01.svg"
alt="Conference Banner"
class="w-full h- object-cover"
/>
<!-- Optional dark overlay for readability -->
<div class="absolute inset-0"></div>
</div>
<!-- Navigation Bar -->
<div
class="max-w-7xl mx-auto flex justify-between items-center px-4 sm:px-6 py-3"
>
<!-- Logo -->
<div class="flex flex-col space-x-2">
<span class="text-lg sm:text-xl font-bold text-white"
>MetaSphere 2026</span
>
<!-- <span class="text-xs text-white "> Global Conference on Cloud, Virtualization & Metaverse</span> -->
</div>
<!-- Desktop Nav -->
<div class="hidden md:flex items-center">
<nav
class="flex items-center space-x-5 text-sm font-medium"
>
<a
href="/index.html"
class="text-white hover:text-orange-400 transition"
>Home</a
>
<!-- Authors Dropdown -->
<div class="relative">
<button
onclick="toggleDropdown('authorsDropdown')"
class="text-white hover:text-orange-400 flex items-center"
>
Authors
<i
data-lucide="chevron-down"
class="w-3.5 h-3.5 ml-1"
></i>
</button>
<div
id="authorsDropdown"
class="absolute mt-2 w-48 bg-white rounded-md shadow-lg py-1 hidden z-50"
>
<a
href="/CallPapers.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Call For Papers</a
>
<a
href="/PaperSubmit.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Paper Submission</a
>
</div>
</div>
<a
href="/technical-programs.html"
class="text-white hover:text-orange-400 transition"
>Technical Programs</a
>
<a
href="/registration.html"
class="text-white hover:text-orange-400 transition"
>Registration</a
>
<a
href="/Keynote_Speaker.html"
class="text-white hover:text-orange-400 transition"
>Keynote Speakers</a
>
<!-- Committee Dropdown -->
<div class="relative">
<button
onclick="
toggleDropdown('committeeDropdown')
"
class="text-white hover:text-orange-400 flex items-center"
>
Committee
<i
data-lucide="chevron-down"
class="w-3.5 h-3.5 ml-1"
></i>
</button>
<div
id="committeeDropdown"
class="absolute mt-2 w-48 bg-white rounded-md shadow-lg py-1 hidden z-50"
>
<a
href="/scientific-committee.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Scientific Committee</a
>
<a
href="/AdvisoryCommittee.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Advisory Committee</a
>
<a
href="/TechCommittee.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>Technical Programs Committee</a
>
<a
href="/AAIA.html"
class="block px-4 py-2 text-gray-700 hover:bg-orange-100"
>AAIA Committee</a
>
</div>
</div>
<a
href="/TechSponsor.html"
class="text-white hover:text-orange-400 transition"
>Technical Sponsors</a
>
<a
href="/Contact.html"
class="text-white hover:text-orange-400 transition"
>Contact</a
>
</nav>
<!-- Register Button -->
<a
href="/registration.html"
class="ml-6 px-4 py-1.5 rounded-md text-sm font-semibold shadow-md transition bg-orange-500 text-white hover:bg-orange-600"
>
Register Now
</a>
</div>
<!-- Mobile Hamburger -->
<button
onclick="toggleMobileMenu()"
class="md:hidden p-2 rounded-md text-white hover:bg-orange-400"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="26"
height="26"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="4" x2="20" y1="12" y2="12" />
<line x1="4" x2="20" y1="6" y2="6" />
<line x1="4" x2="20" y1="18" y2="18" />
</svg>
</button>
</div>
<!-- Mobile Menu -->
<div
id="mobileMenu"
class="md:hidden hidden bg-black/70 text-white px-6 py-4 space-y-4"
>
<a href="/index.html" class="block hover:text-orange-400"
>Home</a
>
<a
href="/CallPapers.html"
class="block hover:text-orange-400"
>Call for Papers</a
>
<a
href="/Keynote_Speaker.html"
class="block hover:text-orange-400"
>Keynote Speakers</a
>
<a
href="/PaperSubmit.html"
class="block hover:text-orange-400"
>Paper Submission</a
>
<a
href="/technical-programs.html"
class="block hover:text-orange-400"
>Technical Programs</a
>
<a
href="/registration.html"
class="block hover:text-orange-400"
>Registration</a
>
<a
href="/scientific-committee.html"
class="block hover:text-orange-400"
>Scientific Committee</a
>
<a
href="/AdvisoryCommittee.html"
class="block hover:text-orange-400"
>Advisory Committee</a
>
<a
href="/TechCommittee.html"
class="block hover:text-orange-400"
>Technical Program Committee</a
>
<a href="/AAIA.html" class="block hover:text-orange-400"
>AAIA Committee</a
>
<a
href="/TechSponsor.html"
class="block hover:text-orange-400"
>Technical Sponsors</a
>
<a href="/Contact.html" class="block hover:text-orange-400"
>Contact</a
>
<a
href="/registration.html"
class="block bg-orange-500 text-center rounded-md py-2 text-sm font-semibold hover:bg-orange-600"
>Register Now</a
>
</div>
</header>
<section
class="relative pt-32 pb-20 sm:pt-60 sm:pb-24 overflow-hidden"
>
<div
id="video-slideshow"
class="absolute top-0 left-0 w-full h-full z-0"
>
<video
autoplay
loop
muted
class="absolute top-0 left-0 w-full h-full object-cover transition-opacity duration-1000 ease-in-out opacity-100"
>
<source src="/Assets/MB.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
<div
class="absolute top-0 left-0 w-full h-full bg-gradient-to-t from-[#FFFBF5] via-[#FFFBF5]/80 to-transparent z-10"
></div>
<div
class="relative max-w-5xl mx-auto text-center px-4 z-20"
data-aos="fade-up"
data-aos-duration="2000"
>
<div class="max-w-5xl mx-auto text-center px-4">
<h1
class="text-4xl md:text-6xl font-extrabold text-gray-900 leading-tight"
>
Technical Program
<span class="gradient-text">Committee</span>
</h1>
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto">
Meet the distinguished members of our Technical
Program Committee.
</p>
</div>
</div>
</section>
<main class="mb-12">
<div class="max-w-7xl mx-auto px-4">
<table
id="committeeTable"
class="display"
style="width: 100%"
>
<thead>
<tr>
<th class="text-left p-4">Name</th>
<th class="text-left p-4">Affiliation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Arpan Adhikary</td>
<td>Haldia Institute of Technology, India</td>
</tr>
<tr>
<td>Renu Devi</td>
<td>ICFAI University, India</td>
</tr>
<tr>
<td>Ashok P</td>
<td>
Symbiosis Institute of Digital and Telecom
Management (SIDTM), Symbiosis International
(Deemed University), Lavale, Pune,
Maharashtra, India
</td>
</tr>
<tr>
<td>Kanchan Govind Rathi</td>
<td>MIT ACS College, Alandi, India</td>
</tr>
<tr>
<td>Akoramurthy B</td>
<td>
National Institute of Technology Puducherry, India
</td>
</tr>
<tr>
<td>Dr. Priti Deb</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Manas Kumar Yogi</td>
<td>
Pragati Engineering College (Autonomous), India
</td>
</tr>
<tr>
<td>Lycel Lagnason Pacheco</td>
<td>Central Philippines State University, India</td>
</tr>
<tr>
<td>Siparna Rabi Das</td>
<td>BPPIMT Kolkata, India</td>
</tr>
<tr>
<td>Nayantara Mitra</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Kaushiki Roy</td>
<td>IIIT Raichur, India</td>
</tr>
<tr>
<td>Dr. Archana J. N</td>
<td>
Vimal Jyothi Engineering College
(Autonomous), India
</td>
</tr>
<tr>
<td>Patrali Pradhan</td>
<td>Haldia Institute of Technology, India</td>
</tr>
<tr>
<td>Dr. Priyanka Das</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Arnab Das</td>
<td>Swami Vivekananda University, India</td>
</tr>
<tr>
<td>Anandaraj M</td>
<td>
PSNA College of Engineering and Technology, India
</td>
</tr>
<tr>
<td>Dr. Soamdeep Singha</td>
<td>Vidyasagar University, India</td>
</tr>
<tr>
<td>Mr. Ranjit Subba</td>
<td>
Department of Computer Science, Hijli
College, Kharagpur, Paschim Medinipur, West
Bengal, India
</td>
</tr>
<tr>
<td>Bhagyashree Hambarde</td>
<td>
St. Vincent Pallotti College of Engineering
and Technology, Nagpur, India
</td>
</tr>
<tr>
<td>Priyajit Sen</td>
<td>Indian Statistical Institute, Kolkata, India</td>
</tr>
<tr>
<td>Dr. Kyamelia Roy</td>
<td>Siliguri Government Polytechnic, India</td>
</tr>
<tr>
<td>Kaustav Nandi</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Nitu Saha</td>
<td>
University of Engineering and Management,
Kolkata, India
</td>
</tr>
<tr>
<td>Dr. I. Karthiga Kathiravan</td>
<td>
BS Abdur Rahman Crescent Institute of
Science and Technology, India
</td>
</tr>
<tr>
<td>Kaustav Sarkar</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Dr. Syed Abdul S</td>
<td>BSACIST-UGC, India</td>
</tr>
<tr>
<td>Dr. Remya Chandran</td>
<td>
Vimal Jyothi Engineering College
(Autonomous), India
</td>
</tr>
<tr>
<td>Tahamina Yesmin</td>
<td>Adamas University, India</td>
</tr>
<tr>
<td>Faisal Firdous</td>
<td>JUIT, Solan, India</td>
</tr>
<tr>
<td>Sikhriti Saha</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Koyel Chakraborty</td>
<td>
Supreme Knowledge Foundation Group of
Institutions, India
</td>
</tr>
<tr>
<td>Bipradash Pandit</td>
<td>Meghnad Saha Institute of Technology, India</td>
</tr>
<tr>
<td>Dr. Aritra Bandyopadhyay</td>
<td>
Supreme Knowledge Foundation Group of
Institutions, India
</td>
</tr>
<tr>
<td>Proshanta Sarkar</td>
<td>
B. P. Poddar Institute of Management &
Technology, India
</td>
</tr>
<tr>
<td>Maloy Kumar Dey</td>
<td>NIT Nagaland, India</td>
</tr>
<tr>
<td>Rohit Kumar Nonia</td>
<td>NIT Jamshedpur, India</td>
</tr>
<tr>
<td>Dr. Rajendrani Mukherjee</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Dr. Moumita Das</td>
<td>Haldia Institute of Technology, India</td>
</tr>
<tr>
<td>Soham Goswami</td>
<td>MCKV Institute of Engineering, Howrah, India</td>
</tr>
<tr>
<td>Sasmita Subhadarsinee Choudhury</td>
<td>MCKV Institute of Engineering, India</td>
</tr>
<tr>
<td>Dr. Sivaprakash S</td>
<td>
Vellore Institute of Technology, Vellore, India
</td>
</tr>
<tr>
<td>Anjul Bhardwaj</td>
<td>
Divine Institute of Management & Studies,
Ziradei, Bihar, India
</td>
</tr>
<tr>
<td>Dr. Rahul Soni</td>
<td>Navrachana University, India</td>
</tr>
<tr>
<td>Piyali Bhanja</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Moumita Chatterjee</td>
<td>
Department of Computer Science and
Engineering, Aliah University, India
</td>
</tr>
<tr>
<td>Surojit Bhattacharyya</td>
<td>MCKV Institute of Engineering, India</td>
</tr>
<tr>
<td>Sevda Rzayeva</td>
<td>
Azerbaijan State Oil and Industry University, Azerbaijan
</td>
</tr>
<tr>
<td>Arunima Banerjee</td>
<td>Calcutta Institute of Technology, India</td>
</tr>
<tr>
<td>Dr. Priti Subramanium</td>
<td>
Shri Sant Gadge Baba College of Engineering
and Technology, Bhusawal, India
</td>
</tr>
<tr>
<td>Dr. Mohd Danish</td>
<td>Greater Noida Institute of Technology, India</td>
</tr>
<tr>
<td>Manab Kumar Das</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Niranchana Shri Viswanathan</td>
<td>Sapthagiri NPS University, India</td>
</tr>
<tr>
<td>Dr. Ashwin R. Dobariya</td>
<td>Marwadi University, Rajkot, India</td>
</tr>
<tr>
<td>Dr. Lowlesh Nandkishor Yadav</td>
<td>
Head of Department, Computer Engineering,
Suryodaya College of Engineering and
Technology, Nagpur, Maharashtra, India
</td>
</tr>
<tr>
<td>Dr. Aakanksha Mahajan</td>
<td>PIET, Samalkha, India</td>
</tr>
<tr>
<td>Dr. Goldina Ghosh</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Deborsi Basu</td>
<td>
CONNECT Research Centre, Trinity College
Dublin, The University of Dublin, Ireland
</td>
</tr>
<tr>
<td>Hemprasad Yashwant Patil</td>
<td>
MCTE, Ministry of Defense, Government of
India
</td>
</tr>
<tr>
<td>Dr. Pardeep Kumar</td>
<td>Chandigarh University, India</td>
</tr>
<tr>
<td>Trupti Vinayak Parkar</td>
<td>Microsoft</td>
</tr>
<tr>
<td>Ayan Mondal</td>
<td>IIT Indore, India</td>
</tr>
<tr>
<td>Heerok Banerjee</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Dr. Vijayarajan V</td>
<td>Vellore Institute of Technology, India</td>
</tr>
<tr>
<td>Dr. Perepi Raja Rajeswari</td>
<td>
School of Computer Science, Vellore
Institute of Technology, Vellore, Tamil
Nadu, India
</td>
</tr>
<tr>
<td>Sampath Kumar H. K.</td>
<td>Bodyclone Innovations Pvt. Ltd., NMIT, India</td>
</tr>
<tr>
<td>Sunirmal Khatua</td>
<td>University of Calcutta, India</td>
</tr>
<tr>
<td>Sreelekha Biswas</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Mahesh Kumar Singh</td>
<td>
SRM Institute of Science and Technology,
Delhi NCR Campus, Modinagar, Ghaziabad,
Uttar Pradesh, India
</td>
</tr>
<tr>
<td>Pabak Indu</td>
<td>Institute of Engineering and Management, India</td>
</tr>
<tr>
<td>Khaja Mannanuddin</td>
<td>
School of Computer Science & AI, SR
University, India
</td>
</tr>
<tr>
<td>Dr. Anuradha Bhardwaj</td>
<td>Amity University, India</td>
</tr>
<tr>
<td>Sucheta Chandra</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Ayanabha Ghosh</td>
<td>Indian Institute of Technology, Jodhpur, India</td>
</tr>
<tr>
<td>Ankita Mondal</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Dr. Gourav Jain</td>
<td>IIIT Sonepat, India</td>
</tr>
<tr>
<td>Debayan Ganguly</td>
<td>
Directorate of Technical Education, West
Bengal, India
</td>
</tr>
<tr>
<td>Anwesha Mukherjee</td>
<td>Mahishadal Raj College, India</td>
</tr>
<tr>
<td>Pritusna Banik</td>
<td>Narula Institute of Technology, India</td>
</tr>
<tr>
<td>Manjima Saha</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Sanjukta Majumder</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Debasish Swapnesh Kumar Nayak</td>
<td>
Centurion University of Technology and
Management, Kolkata, India
</td>
</tr>
<tr>
<td>Rohit Kumar</td>
<td>ABV-IIITM Gwalior, India</td>
</tr>
<tr>
<td>Naga Venkata Rajareddy Goluguri</td>
<td>University of Saskatchewan, Canada</td>
</tr>
<tr>
<td>Dr. Ayush Kumar Agrawal</td>
<td>Dr. C. V. Raman University, Delhi, India</td>
</tr>
<tr>
<td>Dr. Sandeep Dwarkanath Pande</td>
<td>MIT Academy of Engineering, Alandi, India</td>
</tr>
<tr>
<td>Aashish Ramdasji Dandekar</td>
<td>RTMNU, India</td>
</tr>
<tr>
<td>Rabindranath Bera</td>
<td>
Indian Institute of Information Technology, India
</td>
</tr>
<tr>
<td>Monu Bhagat</td>
<td>
Birla Institute of Technology, Mesra, Ranchi, India
</td>
</tr>
<tr>
<td>Sahana Das</td>
<td>Adamas University, India</td>
</tr>
<tr>
<td>Archisman Adhikary</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Dr. Dipankar Das</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Tanmoy Kundu</td>
<td>AIT, India</td>
</tr>
<tr>
<td>Prof. Swapnesh Taterh</td>
<td>
Maharashtra Academy of Engineering Education
and Research, MIT ACSC, Pune, India
</td>
</tr>
<tr>
<td>Dr. Gajanan Uttam Patil</td>
<td>HSM’S SSGBCOE&T, Bhusawal, India</td>
</tr>
<tr>
<td>Senjuti Khanra</td>
<td>Techno Main, Kolkata, India</td>
</tr>
<tr>
<td>Ankan Bhowmick</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Pritam Chakraborty</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Dr. Jayanta Paul</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Abriti Paul</td>
<td>
Institute of Engineering and Management,
Kolkata (Salt Lake Campus), India
</td>
</tr>
<tr>
<td>Pradipta Roy</td>
<td>B. C. Roy Institute of Technology, India</td>
</tr>
<tr>
<td>Dr. Anindita Roychowdhuri</td>
<td>Sarojini Naidu College for Women, India</td>
</tr>
<tr>
<td>Saikat Mondal</td>
<td>Amity University, Ranchi, India</td>
</tr>
<tr>
<td>Dr. Jadav Kumar Das</td>
<td>MAKAUT, West Bengal, India</td>
</tr>
<tr>
<td>Dr. Subha Ghosh</td>
<td>Amity University, Kolkata, India</td>
</tr>
<tr>
<td>Dr. Biplab Das</td>
<td>St. Xavier’s University, Kolkata, India</td>
</tr>
<tr>
<td>Dr. Samarjit Roy</td>
<td>
School of Computing and Information
Technology, Eastern International
University, Vietnam
</td>
</tr>
<tr>
<td>Dr. Anand Motwani</td>
<td>VIT Bhopal University, India</td>
</tr>
<tr>
<td>Subhajit Adhikari</td>
<td>
Department of Computer Application, Techno
India University, West Bengal, India
</td>
</tr>
<tr>
<td>Dr. Pabitra Pal</td>
<td>MAKAUT, West Bengal, India</td>
</tr>
<tr>
<td>Dr. Debarati Dey Roy</td>
<td>
B. P. Poddar Institute of Management and
Technology, Applied Artificial Intelligence
Research Centre, UNEC, Baku, Azerbaijan
</td>
</tr>
<tr>
<td>Anindita Kundu</td>
<td>VIT Vellore, India</td>
</tr>
<tr>
<td>Dr. Ramesh Saha</td>
<td>
Indian Institute of Information Technology
(IIIT) Sonepat, India
</td>
</tr>
<tr>
<td>Abhijit Das</td>
<td>BITS Pilani, India</td>
</tr>
<tr>
<td>Rajib Bag</td>
<td>Bankura University, India</td>
</tr>
<tr>
<td>Dr. Sudakshina Mandal</td>
<td>Narula Institute of Technology, India</td>
</tr>
<tr>
<td>Baiju B. V.</td>
<td>Vellore Institute of Technology, India</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer class="bg-gray-800 text-gray-300">