-
Notifications
You must be signed in to change notification settings - Fork 4
/
selected-students.html
906 lines (857 loc) · 45.7 KB
/
selected-students.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KD3KV5KGQ5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-KD3KV5KGQ5');
</script>
<script>
// Service Worker
if ('serviceWorker' in navigator) {
// Register a service worker hosted at the root of the
// site using the default scope.
navigator.serviceWorker.register('/service-worker.js').then((registration) => {
console.log('Service worker registration succeeded:', registration);
}, /*catch*/ (error) => {
console.error(`Service worker registration failed: ${error}`);
});
} else {
console.error('Service workers are not supported.');
}
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Departement Wise Selected Students || Training & Placemement Cell || Khwaja Moinuddin Chishti Language
University, Lucknow</title>
<meta
content="Departement Wise Selected Students, Training & Placement Cell, Khwaja Moinuddin Chishti Langauge
University, Official Website of Training & Placement Cell, Khwaja Moinuddin Chishti Langauge University,
Lucknow.
Training and Placement Cell, KMCLU, Lucknow, Placement KMCLU, KMCLU Placement, Placement in Lucknow, University in
Lucknow, KMCLU Training & Placement, Lucknow University, Dr. Syed Haider Ali, Prof. N.B. Singh, AKTU, Karishma
Singh, FoET Training, FoET KMCLU, Engineering at KMCLU, KMC, FoET Khwaja Moinuddin Chishti Language University,
Softpro, Club Oxygen, Training and Placement Company in Lucknow, BCA in Lucknow, MCA in Lucknow, BTech in Lucknow,
Best Engineering College in Lucknow, Ayushi Mishra, Vivek Verma, Synclovis, Best BTech College in Lucknow, acxiom
consulting pvt ltd, uttar pradesh best mca college, Sahil Ali, Subhan Raj, Softpro Technologies, DLW Varanasi, Vivek
Bajpai, Balaji Construction Company Lucknow, Highest Package, Pie Infocomm, Electrocus, Shan E Fatima"
name="description" />
<meta content="Departement Wise Selected Students, Training & Placement Cell, Khwaja Moinuddin Chishti Langauge University, Training & Placement Cell, Khwaja Moinuddin Chishti Language University, Training and Placement Cell,
KMCLU, Lucknow, Training & Placement Cell, KMCLU Placement, Placement KMCLU, University in Lucknow, KMCLU Training &
Placement, Official Website of Training & Placement Cell, Khwaja Moinuddin Chishti Langauge University, Lucknow.
Training and Placement Cell, KMCLU, Lucknow, Placement KMCLU, KMCLU Placement, Placement in Lucknow, University in
Lucknow, KMCLU Training & Placement, Lucknow University, Dr. Syed Haider Ali, Prof. N.B. Singh, AKTU, Karishma
Singh, FoET Training, FoET KMCLU, Engineering at KMCLU, KMC, FoET Khwaja Moinuddin Chishti Language University,
Softpro, Club Oxygen, Training and Placement Company in Lucknow, BCA in Lucknow, MCA in Lucknow, BTech in Lucknow,
Best Engineering College in Lucknow, Ayushi Mishra, Vivek Verma, Synclovis, Best BTech College in Lucknow, acxiom
consulting pvt ltd, uttar pradesh best mca college, Sahil Ali, Subhan Raj, Softpro Technologies, DLW Varanasi, Vivek
Bajpai, Balaji Construction Company Lucknow, Highest Package, Pie Infocomm, Electrocus,
Shan E Fatima" name="keywords" />
<!-- og:meta tags -->
<meta property="og:title" content="Departement Wise Selected Students || Training & Placemement Cell || Khwaja Moinuddin Chishti Language
University, Lucknow" />
<meta property="og:url" content="https://placement.kmclu.ac.in/" />
<meta property="og:description" content="Departement Wise Selected Students, Training & Placement Cell, Khwaja Moinuddin Chishti Langauge University, Official Website of Training & Placement Cell, Khwaja Moinuddin Chishti Langauge University, Lucknow.
Training and Placement Cell, KMCLU, Lucknow, Placement KMCLU, KMCLU Placement, Placement in Lucknow, University in
Lucknow, KMCLU Training & Placement, Lucknow University, Dr. Syed Haider Ali, Prof. N.B. Singh, AKTU, Karishma
Singh, FoET Training, FoET KMCLU, Engineering at KMCLU, KMC, FoET Khwaja Moinuddin Chishti Language University,
Softpro, Club Oxygen, Training and Placement Company in Lucknow, BCA in Lucknow, MCA in Lucknow, BTech in Lucknow,
Best Engineering College in Lucknow, Ayushi Mishra, Vivek Verma, Synclovis, Best BTech College in Lucknow, acxiom
consulting pvt ltd, uttar pradesh best mca college, Sahil Ali, Subhan Raj, Softpro Technologies, DLW Varanasi, Vivek
Bajpai, Balaji Construction Company Lucknow, Highest Package, Pie Infocomm, Electrocus,
Shan E Fatima" />
<meta property="og:image" content="https://placement.kmclu.ac.in/assets/img/logo300x300.webp" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_IN" />
<meta name="theme-color" content="#ff5828" />
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i|Baloo+Bhai+2"
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/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/vendor/datatables/datatables.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<script>
navigator.serviceWorker.register("assets/js/service-worker.js")
</script>
<link rel="manifest" href="manifest.json" />
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<!-- <div class="d-flex align-items-center">
<img src="/assets/img/KMCLU_back.png" alt="">
</div> -->
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo">
<a href="index.html" class="logo"><img src="assets/img/logo.webp" alt="KMCLU Logo" class="img-fluid">
<a href="index.html">Training & Placement Cell <span>KMCLU</span></a>
</h1>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="/index.html#hero">Home</a></li>
<li class="dropdown"><a href="/index.html#about"><span>About Us</span> <i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a class="nav-link scrollto" href="/index.html#team">Team</a></li>
<li><a class="nav-link scrollto" href="/index.html#clients">Training & Recruiting
Partners</a></li>
<li><a href="https://kmclu.ac.in/mous/" target="_blank">MoUs</a></li>
</ul>
</li>
<li class="dropdown"><a href="/index.html#atAGlance"><span>At A Glance</span> <i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a class="nav-link scrollto" href="/index.html#atAGlance">News and Events</a></li>
<li><a class="nav-link scrollto" href="/index.html#atAGlance">Campus Drive</a></li>
</ul>
</li>
<li><a class="nav-link scrollto" href="/index.html#testimonials">Placement Highlights</a></li>
<li><a class="nav-link scrollto" href="/index.html#contact">Contact Us</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container position-relative" data-aos="fade-up" data-aos-delay="100">
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- <div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Selection Highlights</h2>
</div>
<section id="counts" class="counts section-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="57" data-purecounter-duration="2"
class="purecounter"></span>
<p>Students of FoET Placed in Session 2022-23</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="6" data-purecounter-duration="2"
class="purecounter"></span>
<p>Lakhs Per Annum Highest Package</p>
</div>
</div>
</div>
<div class="row justify-content-end">
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="12"
data-purecounter-duration="2" class="purecounter"></span>
<p>Students of CSE Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="36"
data-purecounter-duration="2" class="purecounter"></span>
<p>Students of Mechanical Engineering Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="6" data-purecounter-duration="1"
class="purecounter"></span>
<p>Students of Civil Engineering Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="2"
class="purecounter"></span>
<p>Students of Biotech Engineering Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="2"
class="purecounter"></span>
<p>Students of Master of Business Adminstration Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="2"
class="purecounter"></span>
<p>Students of Bachelor of Business Adminstration Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="2"
class="purecounter"></span>
<p>Students of Bachelor of Computer Application Placed</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-6 d-md-flex align-items-md-stretch">
<div class="count-box">
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="2"
class="purecounter"></span>
<p>Students of Master of Computer Application Placed</p>
</div>
</div>
</div>
</div>
</section>
</div> -->
<div class="container" data-aos="fade-up">
<div class="section-title py-4">
<h2>List of Selected Students</h2>
</div>
<section id="table" class="section-bg">
<div class="table-responsive px-4 text-center">
<table class="table table-bordered table-hover selectedTable" id="listTable">
<thead>
<tr>
<th scope="col">Sr. No</th>
<th scope="col">Student Name</th>
<th scope="col">Department</th>
<th scope="col">Company Name</th>
<th scope="col">Package</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Abdullah</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>2</td>
<td>ABHISHEK KUMAR</td>
<td>B.Tech Civil Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>3</td>
<td>Abhishek Pandey</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>4</td>
<td>ADARSH TIWARI</td>
<td>Bachelor of Business Administration</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>5</td>
<td>AKASH DEEP SINGH</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>6</td>
<td>AKASH PAL</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>7</td>
<td>Amit Kumar</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>8</td>
<td>Amrendra Kumar Gaurav</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>9</td>
<td>Anand Gopal Gaurav</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>10</td>
<td>Angad Nishad</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>11</td>
<td>ANURAG YADAV</td>
<td>B.Tech Mechanical Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>12</td>
<td>ASAD ALIM SHEIKH</td>
<td>B.Tech Civil Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>13</td>
<td>AYUSHI MISHRA</td>
<td>B.Tech Mechanical Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>14</td>
<td>Bhanu Pratap</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>15</td>
<td>BHOLA UPADHYAY</td>
<td>B.Tech Mechanical Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>16</td>
<td>KARISHMA SINGH</td>
<td>B.Tech Computer Science Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>17</td>
<td>KUNDAN JAISWAL</td>
<td>B.Tech Civil Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>18</td>
<td>MD MASOOM MANSURI</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>19</td>
<td>Md Masoom Mansuri</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>20</td>
<td>Mohd Adnan</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>21</td>
<td>Mohd Arif</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>22</td>
<td>MOHD ARIF</td>
<td>B.Tech Mechanical Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>23</td>
<td>MOHD GAUSH IFTEKHAR</td>
<td>B.Tech Computer Science Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>24</td>
<td>Mohd shaquib khan</td>
<td>B.Tech Computer Science Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>25</td>
<td>MOHD TALHA</td>
<td>B.Tech Computer Science Engineering</td>
<td>B.Tech Computer Science Engineering</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>26</td>
<td>NISHANT VERMA</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>27</td>
<td>Omkar Nath Pandey</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>28</td>
<td>Pawan Singh Nagavanshi</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>29</td>
<td>Prabhakar Mishra</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>30</td>
<td>Pravesh Maurya</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>42</td>
<td>Devesh Yadav</td>
<td>B.Tech Computer Science Engineering</td>
<td>Mind you Infotech</td>
<td>1.7 LPA</td>
</tr>
<tr>
<td>32</td>
<td>Rahul Maurya</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>43</td>
<td>Reetika Kushwaha</td>
<td>B.Tech Computer Science Engineering</td>
<td>Mind you Infotech</td>
<td>1.7 LPA</td>
</tr>
<tr>
<td>44</td>
<td>Mohd Shahwaz</td>
<td>B.Tech Computer Science Engineering</td>
<td>Mind you Infotech</td>
<td>1.7 LPA</td>
</tr>
<tr>
<td>35</td>
<td>Ravi vishwakarma</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>45</td>
<td>Priyanshu</td>
<td>B.Tech Computer Science Engineering</td>
<td>Mind you Infotech</td>
<td>1.7 LPA</td>
</tr>
<tr>
<td>46</td>
<td>Mohd Faizan Khan</td>
<td>B.Tech Computer Science Engineering</td>
<td>Mind you Infotech</td>
<td>1.7 LPA</td>
</tr>
<tr>
<td>38</td>
<td>Sanjeev Kumar Gautam</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>39</td>
<td>SATYAM MAURYA</td>
<td>B.Tech Mechanical Engineering</td>
<td>Pie Infocomm</td>
<td>4.5 LPA</td>
</tr>
<tr>
<td>47</td>
<td>Zaid Ahmad Khan</td>
<td>B.Tech Computer Science Engineering</td>
<td>Mind you Infotech</td>
<td>1.7 LPA</td>
</tr>
<tr>
<td>41</td>
<td>Shivam pandey</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>48</td>
<td>Vivek Verma</td>
<td>B.Tech Computer Science Engineering</td>
<td>Synchlovis</td>
<td>4.15 LPA</td>
</tr>
<tr>
<td>49</td>
<td>Agam</td>
<td>B.Tech Computer Science Engineering</td>
<td>Qanvus Technologies</td>
<td> </td>
</tr>
<tr>
<td>44</td>
<td>Shivam Sharma</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>50</td>
<td>Arun Kumar</td>
<td>B.Tech Biotech Engineering</td>
<td>Experiome</td>
<td>1.1 LPA</td>
</tr>
<tr>
<td>46</td>
<td>Shivam singh</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>51</td>
<td>Ashvani baranwal</td>
<td>B.Tech Civil Engineering</td>
<td>Balaji Constrution</td>
<td>1.8 LPA</td>
</tr>
<tr>
<td>48</td>
<td>SONAL YADAV</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>52</td>
<td>Prashant Singh</td>
<td>B.Tech Civil Engineering</td>
<td>NCC Limited</td>
<td>1.92 LPA</td>
</tr>
<tr>
<td>50</td>
<td>Taha Ahmed Ansari</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>51</td>
<td>VIJAY PRATAP</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>54</td>
<td>Divakar Verma</td>
<td>B.Tech Civil Engineering</td>
<td>R Cube Infratech</td>
<td>2.4 LPA</td>
</tr>
<tr>
<td>53</td>
<td>Vikrant Kumar</td>
<td>B.Tech Mechanical Engineering</td>
<td>Renault Nissan</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>55</td>
<td>Archana Sharma</td>
<td>B.Tech Mechanical Engineering</td>
<td>Teamlease Education foundation</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>56</td>
<td>Prachi Yadav</td>
<td>B.Tech Mechanical Engineering</td>
<td>Teamlease Education foundation</td>
<td>2.5 LPA</td>
</tr>
<tr>
<td>57</td>
<td>Adiba Mumtaz</td>
<td>B.Tech Mechanical Engineering</td>
<td>Teamlease Education foundation</td>
<td>2.5 LPA</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact Us</h2>
<p>Feel free to contact us for any queries regarding admission, placement, campus or anything else.
Your
queries are welcomed.</p>
</div>
<div>
<iframe style="border:0; width: 100%; height: 270px;"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3557.19889253149!2d80.89393731441238!3d26.92890848312061!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x399956564d730943%3A0xa3f27afc8ce7218b!2sKhwaja%20Moinuddin%20Chishti%20Language%20University!5e0!3m2!1sen!2sin!4v1666037251353!5m2!1sen!2sin"
frameborder="0" allowfullscreen></iframe>
</div>
<div class="row mt-5">
<div class="col-lg-4">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Khwaja Moinudddin Chishti Language University, Lucknow,
Uttar Pradesh 226020</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<a href="mailto:[email protected]">
<p>[email protected]</p>
</a>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>Mr. Apratim Chatterjee</p>
<a href="tel:+91-8700827457">
<p>+91-8700827457</p>
</a>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0">
<form method="post" role="form" class="php-email-form" id="contact-form">
<div class="row">
<div class="col-md-6 form-group mt-3">
<input type="text" name="name" class="form-control" id="name"
placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-3">
<input type="email" class="form-control" name="email" id="email"
placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject"
placeholder="Subject" required>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message"
required></textarea>
</div>
<div class="text-center"><button type="submit">Send Message</button></div>
</form>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h3>Training & Placement Cell</h3>
<p>
<strong>Phone:</strong> +91 7408274100<br>
<strong>Email:</strong> [email protected]<br>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="/index.html#">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/index.html#about">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/index.html#atAGlance">News and Events</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="/index.html#testimonials">Placement Highlights</a>
</li>
<!-- <li><i class="bx bx-chevron-right"></i> <a href="#">Privacy policy</a></li> -->
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Important Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="https://www.kmclu.ac.in"
target="_blank">KMCLU
Website</a></li>
<li><i class="bx bx-chevron-right"></i> <a
href="assets/documents/Training And Placement Cell Brochure KMCLU Final.pdf"
target="_blank">Brochure
download</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="https://www.kmclu.club" target="_blank">Our
Clubs</a>
</li>
<li><i class="bx bx-chevron-right"></i> <a
href="https://drive.google.com/file/d/1FfoVfQgraaT9Znw7DzEDLcDScpSXaNQi/view?usp=sharing"
target="_blank">General Guidelines</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Get latest Updates</h4>
<p>By subscribing you will get the latest news and
updates from us on your email.</p>
</p>
<form method="post" role="form" id="newsletter">
<input type="email" id="email" name="email" placeholder="Enter your Email"><button
type="submit">Subscribe</button>
</form>
<div id="message2" style="display: none;">
<p>Thanks for subscribing.</p>
</div>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
© Copyright <strong><span>Training & Placement Cell, KMCLU</span></strong>.
All Rights Reserved
</div>
<div>
Last Updated on <strong><span>08-Dec-2022</span></strong>
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="https://twitter.com/kmcluniversity?t=IyOQ2pP1qvVVYnRbMno0rA&s=09" target="_blank"
class="twitter"><i class="bx bxl-twitter"></i></a>
<!-- <a href="#" class="facebook"><i class="bx bxl-facebook"></i></a> -->
<a href="https://www.instagram.com/tpc_kmclu/" target="_blank" class="instagram"><i
class="bx bxl-instagram"></i></a>
<!-- <a href="#" class="google-plus"><i class="bx bxl-skype"></i></a> -->
<a href="https://www.linkedin.com/company/training-and-placement-cell-kmclu-lucknow/" target="_blank"
class="linkedin"><i class="bx bxl-linkedin"></i></a>
<a href="https://www.youtube.com/c/beyondbrief" target="_blank" class="youtube"><i
class="bx bxl-youtube"></i></a>
</div>
</div>
<div class="container d-flex flex-row justify-content-between py-2">
<div class="me-md-auto text-center text-md-start">
<p>
<strong>
Developed by
<a href="https://github.com/SubhanRaj" target="_blank">Subhan Raj</a>,
<a href="https://github.com/SahilAli8808" target="_blank">Sahil Ali</a> and
<a href="https://github.com/mishravaishnavi" target="_blank">Vaishnavi Mishra</a>
Under the Guidance of
<a href="https://www.linkedin.com/in/" target="_blank">Mr. Apratim Chatterjee</a>.
Maintained by Training & Placement Cell, KMCLU
</strong>
</p>
</div>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center
justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/sweetalert/sweetalert.min.js"></script>
<script src="assets/vendor/datatables/datatables.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<!-- Script for contact form -->
<script>
jQuery('#contact-form').on('submit', function (e) {
e.preventDefault();
jQuery.ajax({
url: 'https://script.google.com/macros/s/AKfycbznVYnQeF-Qel1z7oJtUEf8A4AJf5iOOfGaSi-WtZ_pcCzy6B0cH4Vqwv1ikwNNAGd0/exec',
type: 'post',
data: jQuery('#contact-form').serialize(),
success: function (result) {
swal("Thank You!", "We will contact you soon!", "success");
jQuery('#contact-form')[0].reset();
}
})
})
</script>
<!-- Script for newsletter form -->
<script>
jQuery('#newsletter').on('submit', function (e) {
e.preventDefault();
jQuery.ajax({
url: 'https://script.google.com/macros/s/AKfycbzxtlaCjBTeBl9jEzczXivtPk1hJNLFDY79OQoHTOdDIodUFAM3a2SmH1M4d0yF9YtG/exec',
type: 'post',
data: jQuery('#newsletter').serialize(),
success: function (result) {
jQuery('#message2').show();
jQuery('#newsletter')[0].reset();
}
})
})
</script>
<script>
window.addEventListener('offline', function (e) {
swal("Oops", "You are offline!", "error")
});
</script>
<script>
$(document).ready(function () {
$('#listTable').DataTable();
});
</script>
</body>
</html>