-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1388 lines (1246 loc) · 67 KB
/
index.html
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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>ACCES 2022</title>
<meta content="" name="description">
<meta content="" name="keywords">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Favicons -->
<!-- <link href="https://cdn4.iconfinder.com/data/icons/alphabet-3/500/ABC_alphabet_letter_font_graphic_language_text_A-512.png" rel="icon"> -->
<link href="assets/img/LVlogo.PNG"" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: TheEvent - v4.6.0
* Template URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center ">
<div class="container-fluid container-xxl d-flex align-items-center">
<div id="logo" class="me-auto">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="index.html">The<span>Event</span></a></h1>-->
<a href="index.html" class="scrollto"><img id="acces" src="assets/img/logo.png" height="400px" alt="" title=""></a>
<!-- <a href="http://www.griet.ac.in/" class="scrollto" target="_blank"><img id="griet" src="assets/img/aietta.png" alt="" title=""></a> -->
<a href="livededutechservices.in" class="scrollto ml-3" target="_blank"><img id="cityuniversity"src="assets/img/LV.jpeg" height="50px" alt="" title=""></a>
<a href="http://mlewguntur.com/" class="scrollto ml-3" target="_blank"><img id="aip"src="assets/img/college_logo.jpeg" height="50px" alt="" title=""></a>
</div>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#speakers">Speakers</a></li>
<li><a class="nav-link scrollto" href="#schedule">Schedule</a></li>
<li><a class="nav-link scrollto" href="#faq">Call for Papers</a></li>
<li><a class="nav-link scrollto" href="#publications">Publications</a></li>
<li><a class="nav-link scrollto" href="#committee">Committee</a></li>
<li><a class="nav-link scrollto" href="#registration">Registration</a></li>
<!-- <li><a class="nav-link scrollto" href="#about">About</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#venue">Venue</a></li>
<li><a class="nav-link scrollto" href="#hotels">Hotels</a></li>
<li><a class="nav-link scrollto" href="#gallery">Gallery</a></li>
<li><a class="nav-link scrollto" href="#supporters">Sponsors</a></li> -->
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container" data-aos="zoom-in" data-aos-delay="100">
<marquee width="100%" style="color:white !important" direction="left" height="100px">
All accepted and presented papers will be published in scopus indexed conference proceedings/book proceedings. Few selected papers published in Scopus indexed journals</marquee>
<h1 class="mb-4 pb-0">2nd International Conference on <br><span>Advances in Communications, Computing and Electronic Systems</span>
<h2 class="text-left hero_descp"> 6th April, 2024</h2>
<h2 class = "text-left hero_descp">Malineni Lakshmaiah Women's Engineering College (Autonomous)</h2>
<p>Technical Partner :<a href="https://livededutechservices.in/" target="_blank"> LIVED EDUTECH SERVICES, INDIA</p>
<!-- <p class="mb-4 pb-0">6-7 May 2022, Gokaraju Rangaraju Institute of Engineering and Technology, Hyderabad</p> -->
<!-- <a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="glightbox play-btn mb-4"></a> -->
<!-- <a href="http://www.acces2020.griet.ac.in/" target="blank" class="about-btn scrollto">Previous Conference</a> -->
<!-- <a href="./assets/broucher/Broucher.pdf" target="_blank" class="about-btn scrollto">Download Brochure</a> -->
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-6">
<h1 class="highlight"><b>About The Event</b></h1>
<p class="about_descp">The emergent Technologies globally provide platforms for industrial experts and research scholars to bring innovations to meet the rapid growth of the Information and society needs. The purpose of ACCES 2024 is to promote discussions and interaction among academics, researchers and professionals on various aspects of ubiquitous technology in the field of Communication, Signal and Image processing, VLSI, Soft Computing and Embedded Systems. In this conference, the specific themes for intensive panel discussions are also planned according to the areas of interest. Outstanding keynote speakers and well known leading scientists and experts from across the globe will be expected to share their knowledge.</p>
</div>
<div class="col-lg-3">
<h2 class="highlight">Where</h2>
<p class="about_descp">Malineni Lakshmaiah Women's Engineering College (Autonomous)</p>
</div>
<div class="col-lg-3">
<h2 class="highlight">When</h2>
<p class="about_descp">Saturday<br>6th April 2024</p>
</div>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<!-- <div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="./assets/img/event slider/1.jpeg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./assets/img/event slider/2.jpeg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./assets/img/event slider/3.jpeg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div> -->
<div class="row mt-4">
<div class="col-lg-12 col-md-6">
<h2 class="highlight">About The Institute</h2>
<p class="about_descp">MalineniLakshmaiah Women’s Engineering College, (MLEW) has been established in 2008 to leverage ‘education’ as a means of ‘empowerment’ of women. The aim is to promote Technical Education among women to enhance and build-up a new generation of thinkers, innovators and planners in the realms of Science and Technology. It is approved by All India Council for Technical Education (AICTE), New Delhi and ISO 9001:2015 Certified Institutionand with the recognition of Govt. of A.P, MLEW is affiliated to Jawaharlal Nehru Technological University (JNTU-K), Kakinada. Since the inception of the college, the college has been taking in students and growing in facilities year after year. Aesthetically landscaped, the sprawling campus of the college is home to the finest facilities and contemporary instructional infrastructure. Every student of MALINENI can be assured that this institution will provide them a very congenial academic ambience and the right type of inputs in order to mould them with the right technical competence as required by the industry. The teaching-learning process is carried out through the use of overhead and LCD projectors. The college boosts facilities such as an extensive computer center, library, advanced lab for communication skills, internet center, spacious seminar halls and Digital Classrooms.</p>
<h3 class="highlight">Vision</h3>
<p class="about_descp">
To be a pioneer institute in engineering education, fostering academic excellence, and producing empowered women engineers, blended with ethics and values, to serve the society.
</p>
<h3 class="highlight">Mission</h3>
<p class="about_descp">
1.To achieve academic excellence through innovative teaching-learning practices.<br>
2.To inculcate self-discipline, ethics, and values amongst the learners .<br>
3.To bridge the gap between industry and academia through the industry-institute interface<br>
4.To promote higher education, research and inculcate entrepreneurial attitude amongst the learners<br>
</p>
<!-- <h3 class="highlight">Quality Policy</h3>
<p class="about_descp">
To provide an integrated learning environment to enable students to grow towards their full potential and meet the high expectations of the Industry and the Society.
</p> -->
</div>
</div>
<!-- <div class="row">
<div class="col-lg-12 col-md-6">
<h2 class="highlight">About The Department</h2>
<p class="about_descp">The department of ECE started in the year 1997. The department is accredited by NBA and NAAC. The department offers UG and PG courses, VLSI and Embedded Systems as specialization. The department has expertise adequate teaching faculty with industrial experience.</p>
</div>
</div> -->
</div>
</section><!-- End About Section -->
<!-- ======= Speakers Section ======= -->
<section id="speakers">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Speakers</h2>
<p>Here are some of our speakers</p>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/speakers/person1.jpg" style="width:640px;height: 480px" alt="Speaker 1" class="img-fluid">
<div class="details">
<h3> PROF. LI XINGWANG </h3>
<p>Henan Polytechnic University, China</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="300">
<img src="assets/img/speakers/person3.jpg" style="width:640px;height: 480px;" alt="Speaker 3" class="img-fluid">
<div class="details">
<h3>PROF. S.B.GOYAL</h3>
<p>Director, City University, Malaysia</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/speakers/person2.jpg" style="width:640px;height: 480px" alt="Speaker 1" class="img-fluid">
<div class="details">
<h3> Dr. PRASENJIT CHATTERJEE</h3>
<p>Professor and Dean (Research & Consultancy),MCKVIE, India</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="speaker" data-aos="fade-up" data-aos-delay="100">
<img src="assets/img/speakers/person4.jpg" style="width:640px;height: 480px" alt="Speaker 1" class="img-fluid">
<div class="details">
<h3> Dr. MOHAMMAD KAMRUL HASAN</h3>
<p>Associate Professor (Head of Network and Communication Technology Research Lab), Center for Cyber Security, FTSM, Universiti Kebangsaan Malaysia (UKM).</p>
<div class="social">
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="section-header">
<p>All speakers are World’s Top 2% Most-Cited Scientists 2023 by US-based Stanford University using the Scopus author profiles as of Oct 1, 2023, from various scientific fields.</p>
</div>
</section><!-- End Speakers Section -->
<!-- ======= Schedule Section ======= -->
<section id="schedule" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is our event schedule</p>
</div>
<!-- <ul class="nav nav-tabs" role="tablist" data-aos="fade-up" data-aos-delay="100">
<li class="nav-item">
<a class="nav-link active" href="#day-1" role="tab" data-bs-toggle="tab">6th May</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#day-2" role="tab" data-bs-toggle="tab">7th May</a>
</li>
</ul> -->
<div class="tab-content row justify-content-center" data-aos="fade-up" data-aos-delay="200">
<p>Update soon</p>
<!-- Schdule Day 1 -->
<!-- <div role="tabpanel" class="col-lg-9 tab-pane fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 - 10:00 AM</time></div>
<div class="col-md-10">
<h4>Conference Inauguration</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 - 11:00 AM</time></div>
<div class="col-md-10">
<h4>Keynote Talk-1</h4>
<p>By Prof. George Ghinea, Brunel University London, UK</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 - 12:30 PM</time></div>
<div class="col-md-10">
<h4>Papers Presentation</h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:30 - 1:30 PM</time></div>
<div class="col-md-10">
<h4>Keynote Talk</h4>
<p>By Dr. S.B. Goyal, City University, Malaysia</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 - 4:00 PM</time></div>
<div class="col-md-10">
<h4>Qui Paper Presentation</h4>
</div>
</div>
</div> -->
<!-- End Schdule Day 1 -->
<!-- Schdule Day 2 -->
<!-- End Schdule Day 2 -->
<!-- Schdule Day 3 -->
<!-- <div role="tabpanel" class="col-lg-9 tab-pane fade" id="day-3">
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/2.jpg" alt="Hubert Hirthe">
</div>
<h4>Et voluptatem iusto dicta nobis. <span>Hubert Hirthe</span></h4>
<p>Maiores dignissimos neque qui cum accusantium ut sit sint inventore.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/3.jpg" alt="Cole Emmerich">
</div>
<h4>Explicabo et rerum quis et ut ea. <span>Cole Emmerich</span></h4>
<p>Veniam accusantium laborum nihil eos eaque accusantium aspernatur.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/1.jpg" alt="Brenden Legros">
</div>
<h4>Libero corrupti explicabo itaque. <span>Brenden Legros</span></h4>
<p>Facere provident incidunt quos voluptas.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/4.jpg" alt="Jack Christiansen">
</div>
<h4>Qui non qui vel amet culpa sequi. <span>Jack Christiansen</span></h4>
<p>Nam ex distinctio voluptatem doloremque suscipit iusto.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/5.jpg" alt="Alejandrin Littel">
</div>
<h4>Quos ratione neque expedita asperiores. <span>Alejandrin Littel</span></h4>
<p>Eligendi quo eveniet est nobis et ad temporibus odio quo.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>04:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="assets/img/speakers/6.jpg" alt="Willow Trantow">
</div>
<h4>Quo qui praesentium nesciunt <span>Willow Trantow</span></h4>
<p>Voluptatem et alias dolorum est aut sit enim neque veritatis.</p>
</div>
</div>
</div> -->
<!-- End Schdule Day 2 -->
</div>
</div>
</section><!-- End Schedule Section -->
<!-- ======= Venue Section ======= -->
<section id="venue">
<div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h2>Event Venue</h2>
<p>Event venue location info and gallery</p>
</div>
<div class="row g-0">
<div class="col-lg-6 venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d983073.1616430186!2d79.5360080381116!3d15.744285126988116!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a4a745fe0946805%3A0x90b4aba3c9c7c0ef!2sMalineni%20Lakshmaiah%20Womens%20Engineering%20College!5e0!3m2!1sen!2sin!4v1699076848461!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> </div>
<div class="col-lg-6 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-8 position-relative">
<h3>Malineni Lakshmaiah Women's Engineering College (Autonomous)</h3>
<p style="font-size: 10px;">MalineniLakshmaiah Women’s Engineering College, (MLEW) has been established in 2008 to leverage ‘education’ as a means of ‘empowerment’ of women. The aim is to promote Technical Education among women to enhance and build-up a new generation of thinkers, innovators and planners in the realms of Science and Technology. It is approved by All India Council for Technical Education (AICTE), New Delhi and ISO 9001:2015 Certified Institutionand with the recognition of Govt. of A.P, MLEW is affiliated to Jawaharlal Nehru Technological University (JNTU-K), Kakinada. Since the inception of the college, the college has been taking in students and growing in facilities year after year. Aesthetically landscaped, the sprawling campus of the college is home to the finest facilities and contemporary instructional infrastructure. Every student of MALINENI can be assured that this institution will provide them a very congenial academic ambience and the right type of inputs in order to mould them with the right technical competence as required by the industry. The teaching-learning process is carried out through the use of overhead and LCD projectors. The college boosts facilities such as an extensive computer center, library, advanced lab for communication skills, internet center, spacious seminar halls and Digital Classrooms.</p>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="container-fluid venue-gallery-container" data-aos="fade-up" data-aos-delay="100">
<div class="row g-0">
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/1.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/2.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/3.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/4.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/4.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/5.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/6.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/7.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/8.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/8.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div> -->
</section><!-- End Venue Section -->
<!-- ======= Hotels Section ======= -->
<!-- <section id="hotels" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Places to visit in Hyderabad</h2>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6">
<div class="hotel">
<div class="hotel-img">
<img src="assets/img/hotels/1.jpg" alt="Hotel 1" class="img-fluid">
</div>
<h3><a href="#hotels">Charminar</a></h3>
<p>The Charminar (lit. 'four minarets') constructed in 1591, is a monument and mosque located in Hyderabad, Telangana, India</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="hotel">
<div class="hotel-img">
<img src="assets/img/hotels/2.jpg" style="height: 248px;" alt="Hotel 2" class="img-fluid">
</div>
<h3><a href="#hotels">Golconda</a></h3>
<p>Golconda Fort, also known as Golla konda (Telugu: "shepherds' hill"), is a fortified citadel built by the Kakatiyas.</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="hotel">
<div class="hotel-img">
<img src="assets/img/hotels/3.jpg" style="height: 248px;" alt="Hotel 3" class="img-fluid">
</div>
<h3><a href="#hotels">Birla Mandir</a></h3>
<p>Birla Mandir is a Hindu temple, built on a 280 feet high hillock called Naubath Pahad on a 13 acres plot in Hyderabad,Telangana,India.</p>
</div>
</div>
</div>
<div class="row hotel" data-aos="fade-up" data-aos-delay="100">
<div class="col-log-12 p-3">
<h3><a href="#hotels">Hyderabad</a></h3>
<p>Hyderabad, the fifth largest metropolis of India, is the state capital of Telangana, known for its rich history and culture with monuments, mosques, temples, a rich and varied heritage in arts, crafts and dance. This site endeavors to present the rich heritage and culture of Hyderabad, along with an insight into Hyderabad today. Hyderabad is located on the banks of the Musi River and on the Deccan Plateau.
Hyderabad and Secunderabad are “twin cities” near Hussain Sagar Lake (also known as Tank Bund in local parlance) but both cities have grown so much that now they have become one big metropolis. The city and district of Hyderabad are coterminous. Hyderabad district is entirely contained within the Ranga Reddy district of Telangana. Many of the suburbs of Hyderabad were recently merged into the city, now called Greater Hyderabad.</p>
</div>
</div>
</div>
</section>End Hotels Section -->
<!-- ======= Gallery Section ======= -->
<!-- <section id="gallery">
<!-- <div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h2>Gallery</h2>
<p>Check our gallery from the recent events</p>
</div>
</div>
<div class="container-fluid venue-gallery-container" data-aos="fade-up" data-aos-delay="100">
<div class="row g-0">
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/2.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/4.png" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/4.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/3.png" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/3.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4 gallery_card">
<div class="venue-gallery">
<a href="assets/img/1.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/1.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- <div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/3.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/3.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- <div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/4.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/4.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- <div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/5.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/6.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/7.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="assets/img/venue-gallery/8.jpg" class="glightbox" data-gall="venue-gallery">
<img src="assets/img/venue-gallery/8.jpg" alt="" class="img-fluid">
</a>
</div>
</div> -->
<!-- </div>
</div> -->
<!-- <div class="gallery-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><a href="assets/img/gallery/1.jpg" class="gallery-lightbox"><img src="assets/img/gallery/1.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/2.jpg" class="gallery-lightbox"><img src="assets/img/gallery/2.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/3.jpg" class="gallery-lightbox"><img src="assets/img/gallery/3.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/4.jpg" class="gallery-lightbox"><img src="assets/img/gallery/4.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/5.jpg" class="gallery-lightbox"><img src="assets/img/gallery/5.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/6.jpg" class="gallery-lightbox"><img src="assets/img/gallery/6.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/7.jpg" class="gallery-lightbox"><img src="assets/img/gallery/7.jpg" class="img-fluid" alt=""></a></div>
<div class="swiper-slide"><a href="assets/img/gallery/8.jpg" class="gallery-lightbox"><img src="assets/img/gallery/8.jpg" class="img-fluid" alt=""></a></div>
</div>
<div class="swiper-pagination"></div>
</div>-->
<!-- </section> -->
<!-- End Gallery Section -->
<!-- ======= Supporters Section ======= -->
<section id="supporters" class="section-with-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Sponsors</h2>
</div>
<div class="row no-gutters supporters-wrap clearfix" data-aos="zoom-in" data-aos-delay="100">
<p>Content will Update soon</p>
<!-- <div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/1.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/2.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/3.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/4.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/5.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/6.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/7.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-3 col-md-4 col-xs-6">
<div class="supporter-logo">
<img src="assets/img/supporters/8.png" class="img-fluid" alt="">
</div>
</div>
</div> -->
</div>
</section><!-- End Sponsors Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h2>Call for Papers</h2>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<h1><b>Paper Template</b></h1>
<p>
<ul>
<li>Mention all authors Affiliations, e-mail address in the paper</li>
<li>Send paper through easy chair</li>
<!-- <li>
<a href="./assets/AIP Conference Proceedings License Agreement.pdf" target="_blank">Copyright/License Agreement Form</a>
</li>
<li>
<a href="./assets/AIPCP Article Template.docx" target="_blank">AIP Conference proceedings template</a>
</li> -->
</ul>
</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<h1><b>Submission</b></h1>
<ul>
<li class="submission">Authors are to submit the papers through <a href="https://easychair.org/account/signin?l=1FrAuFqlxZkhQc3J4fddeI#">Easy Chair Link</a></li>
<b>OR</b>
<li>Authors can send papers directly to the e-mail id: <a href="https://easychair.org/account/signin?l=1FrAuFqlxZkhQc3J4fddeI#">conveneracces2024@malinenicolleges.ac.in</a></li>
</ul>
</div>
</div>
<h5 class="text-center"><b>Tracks and Topics</b></h5>
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-9">
<ul class="faq-list">
<li>
<div data-bs-toggle="collapse" class="collapsed question" href="#faq1">Communications<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>
Cellular Networks<br>
Sensing and Sensor Networks<br>
Geographic information systems<br>
Cloud Networking<br>
Signal processing<br>
Virtualization<br>
Machine to Machine (M2M)<br>
Cognitive Radio<br>
Body Area Networks<br>
Satellite and Optical Communication<br>
Integrated satellite-to-satellite communications<br>
Monitoring/driving natural calamities<br>
Sea-to-Space communications<br>
Nano antennas<br>
High speed optical broadcasting fibers lines<br>
High data rates<br>
Ultra fast access of Internet<br>
Global energy sources<br>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq2" class="collapsed question">Computing<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq2" class="collapse" data-bs-parent=".faq-list">
<p>
Cloud Computing<br>
Quantum Computing<br>
Grid Computing<br>
High Performance Computing<br>
Parallel Computing<br>
Distributed Computing<br>
Human-centric Computing<br>
Ubiquitous Computing<br>
Bioinformatics and Bio-Inspired Computing<br>
Social Computing<br>
Internet of Things<br>
Intelligent Agents<br>
Smart Grids<br>
Smart Cities<br>
Agents and Multi-agent Systems<br>
Assistive Technologies<br>
Affective computing<br>
Intelligent transportation<br>
Context-aware pervasive systems<br>
Emergency and safety systems<br>
Data Warehouse/ Mining<br>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq3" class="collapsed question">Networking<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq3" class="collapse" data-bs-parent=".faq-list">
<p>
Mobile Adhoc Networks<br>
Open Spectrum Solutions<br>
Software defined networking<br>
Network mobility management<br>
Routing Protocols<br>
Antennas and propagation<br>
MIMO advances<br>
Game Theory<br>
QoS and Scheduling<br>
Vehicular Networks<br>
mmWave communications<br>
Mobile and wireless security<br>
Biometric security<br>
Intrusion Detection<br>
Database security<br>
Cryptography<br>
Access control<br>
Denial of service protection<br>
Information hiding<br>
Monitoring and surveillance<br>
Privacy and data protection<br>
P2P wireless communication networks<br>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq4" class="collapsed question">Signal Processing<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq4" class="collapse" data-bs-parent=".faq-list">
<p>
Signal and information processing on graphs<br>
Audio and acoustic signal processing<br>
Digital and multirate signal processing<br>
Image and video processing<br>
Multi-camera imaging<br>
Speech and language processing<br>
Multimedia signal processing<br>
Signal processing for communications<br>
Statistical signal processing<br>
Sensor array & multi-channel signal processing<br>
Machine learning<br>
feature detections<br>
bio-inspired techniques<br>
Pattern recognition<br>
Social learning models<br>
Bayesian signal processing<br>
Cognitive information processing<br>
Biometric analysis<br>
forensic analysis watermarking and security<br>
Processing signal, image and video collections<br>
Implementation of signal, image and video processing systems<br>
High speed signal processing: integrating 5G and IoT with satellite networks<br>
</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq5" class="collapsed question">Embedded Systems <i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq5" class="collapse" data-bs-parent=".faq-list">
<p>
Formal modelling and verification<br>
Embedded software design and analysis<br>
Testing, validation, and certification<br>
Model- and component-based approaches<br>
Embedded Operating systems and middleware<br>
Embedded distributed, networked systems<br>
Embedded software on multi- and many-core processors<br>
Safety-critical and mixed-critical embedded software design<br>
Time-critical embedded systems<br>
Scheduling and execution time analysis<br>
QoS management and performance analysis<br>
Energy-efficient embedded software<br>
Embedded software security , Reliability, and Predictability<br>
Embedded software architectures for intensive data and signal processing<br>
Software design for cyber-physical systems<br>
Robust implementation of control systems<br>
Empirical studies and their reproduction<br>
Biomedical Electronics<br>
Monitoring Systems and Techniques<br>
Low Power Electronics<br>
Applications of new materials, devices and systems<br>
Microelectronic system<br>
Design and implementation of ASIC<br>
FPGA Design and Application<br>
System On Chip<br>
Electronic Instrumentation sing CAD Tools<br>
Full home automation and home applications<br>
Smart homes and cities<br>
</p>
</div>
</li>
<!-- <li>
<div data-bs-toggle="collapse" href="#faq6" class="collapsed question">Embedded Systems<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq6" class="collapse" data-bs-parent=".faq-list">
<p>
Formal modelling and verification<br>
Embedded software design and analysis<br>
Testing, validation, and certification<br>
Model- and component-based approaches<br>
Embedded Operating systems and middleware<br>
Embedded distributed, networked systems<br>
Embedded software on multi- and many-core processors<br>
Safety-critical and mixed-critical embedded software design<br>
Time-critical embedded systems<br>
Scheduling and execution time analysis<br>
QoS management and performance analysis<br>
Energy-efficient embedded software<br>
Embedded software security , Reliability, and Predictability<br>
Embedded software architectures for intensive data and signal processing<br>
Software design for cyber-physical systems<br>
Robust implementation of control systems<br>
Empirical studies and their reproduction<br>
Biomedical Electronics<br>
Monitoring Systems and Techniques<br>
Low Power Electronics<br>
Applications of new materials, devices and systems<br>
Microelectronic system<br>
Design and implementation of ASIC<br>
FPGA Design and Application<br>
System On Chip<br>
Electronic Instrumentation sing CAD Tools<br>
Full home automation and home applications<br>
Smart homes and cities<br>
</p>
</div>
</li> -->
<li>
<div data-bs-toggle="collapse" href="#faq7" class="collapsed question">Special Tracks<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i></div>
<div id="faq7" class="collapse" data-bs-parent=".faq-list">
<p>
Data Mining<br>
Big Data<br>
Statistical Analysis<br>
Decision Trees<br>
Deep Learning<br>
Semantic Web<br>
Web Services and analytics<br>
Clustering and classification<br>
Fuzzy Logic<br>
Space-IoT (monitoring sensors)<br>
Internet of Things<br>
Intelligent Agents<br>
Smart Grids<br>
Smart Cities<br>
Agents and Multi-agent Systems<br>
Assistive Technologies<br>
Affective computing<br>
Intelligent transportation<br>
Emergency and safety systems<br>
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section><!-- End F.A.Q Section -->
<!-- ======= Subscribe Section ======= -->
<section id="subscribe">
<div class="container" data-aos="zoom-in">
<div class="section-header">
<h2>Important Dates</h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-4" data-aos="fade-up" data-aos-delay="100">
<div class="card mb-5 mb-lg-0">
<div class="card-body text-center">
<h5 class="text-danger"><b>Full Paper Submission</b></h5>
<p class="text-dark">25<sup>th</sup>Febraury 2024</p>
<h5 class="text-danger"><b>Notification Acceptance</b></h5>
<p class="text-dark">15<sup>th</sup>March 2024</p>
<h5 class="text-danger"><b>Camera Ready Paper Submission</b></h5>
<p class="text-dark">20<sup>th</sup>March 2024</p>